A bowl of fruit contains apples, bananas, oranges, and pears (at least $15$ of each kind).
(a) In how many ways can we choose $15$ pieces?
$C(60,15) = 53194089192720$
(b) In how many ways can we choose $15$ pieces, including at least $5$ oranges?
$C(55,10) = 29248649430$
(c) In how many ways can we choose $15$ pieces so that there are at most $4$ bananas?
- Was wondering if my steps were correct and I can't figure out a way to attempt c
First of all, its not mentioned that there are 60 fruits. Actually, there are at least 60,
(at least 15 of each kind, and there are 4 kinds).
Lets denote your fruits as a,b,o and p.
a- You want 15 fruits, no matter which ones you choose.
So, say that you take a apples, b bananas, o oranges and p pears, such that: a+b+o+p=15.
(a,b,o,p can be zero as well)
So, integral solutions of this equation will be: C(18,3)
b- Now, you want 15 fruits, at least 5 of them being oranges.
So, take a apples, b bananas, o+5 oranges and p pears.
a+b+(o+5)+p=15
a+b+o+p=10
Integral solutions: C(13,3)
c- Here it's easier if you make cases like 0 bananas, 1 banana, 2 and 3 and 4.
You have only 1 way of choosing any number of bananas, all alike.
For 0:
a+o+p=15
C(17,2)
For 1:
a+o+p=14
C(16,2)
For 2:
a+o+p=13
C(15,2)
For 3:
a+o+p=12
C(14,2)
For 4:
a+o+p=11
C(13,2)
Final answer will be sum of all: C(17,2)+C(16,2)+C(15,2)+C(14,2)+C(13,2)