I have the following problem:
Suppose that there exists 4 baskets of fruits, one with mangoes, another with guavas, another with papaya and the other with apples. Each basket contains at least 20 fruits and the fruits of a same basket are considered equal.
- Of how many forms can we choose 10 fruits?
- Of how many forms can we choose 10 fruits if we must have at least one of each type?
In trying to solve it, i am seeing there are a number of variables involved which confuses me. But I know that:
$$ 20: \text{Amount of each type of fruit} \\ a: \text{Number of mangoes chosen} \\ b: \text{Number of guavas chosen} \\ c: \text{Number of papayas chosen} \\ d: \text{Number of apples chosen} \\ $$
For the first part of the question, I have derived that:
$$ a + b + c + d = 10 $$
And here I remain stuck. Could someone explain to me the concept of the problem and how to proceed in solving the problem?