An ice cream parlour sells ice creams consisting of 1, 2 or 3 scoops. There are 10 different flavours, and the customer is allowed to choose multiple scoops of the same flavour. Assume that the order of the scoops is irrelevant, but the number of scoops is important (i.e. an ice cream with two scoops of a flavour is different to an ice cream with a single scoop of the aforementioned flavour).
The parlous has run out of strawberry ice cream. Now assume that every different variation of ice cream is equally likely to be sold by the parlour. Find the expected amount of customers the parlour can serve before he has to disappoint a customer who wants strawberry ice cream.
So to solve this problem we first need the amount of different ice cream variants that the parlour can sell:
1 scoop: ${10 \choose 1}=$ 10 variations
2 scoops: ${10 \choose 2}$ variations with 2 different flavours + ${10 \choose 1}$ with 1 flavour = 55 variations
3 scoops: ${10 \choose 3}$ variations with 3 different flavours +${10 \choose 1}{9 \choose 1}$ variations with 2 different flavours + ${10 \choose 1}$ variations with 1 flavour = 220 variations.
Total amount of variations: 220 + 55 + 10 = 285
Now we look at the amount of variations containing strawberry, for each of the scoop amounts:
1 scoop: ${10 \choose 0}=1$
2 scoops: ${10 \choose 1}+{10 \choose 0}=11$ .
3 scoops: ${10 \choose 2}+{10 \choose 1}+{10 \choose 0}=56$
So this means that $p=\dfrac{68}{285}$, where $p$ signifies the probability that the parlour is asked for an ice cream containing strawberry.
Call $Y$ the number of customers that ask for an ice cream containing strawberry, then $Y=\text{Bin}(p=\dfrac{68}{285}, n=?)$. Since we have a binomial experiment here, $E(Y) = np = \dfrac{68}{285}n = 1 \iff n=\dfrac{285}{68} \approx 4.2$, so the parlour is expected to serve 5 customers before he is asked for an ice cream containing strawberry.
I was wondering if this solution is correct. Also, when we round the expected value in this problem, is my rounding up here correct, or should we say that $E(Y) \approx 4$?