Suppose that 10 fish are caught at a lake that contains 5 distinct types of fish. How many different outcomes are possible when at least 2 of the 10 are trout?
My approach:
x1 + x2 + x3 + x4 + x5 = 10
Total number of possible outcomes = (14C4) = 1001
Suppose x5 ≥ 2, then x1 + x2 + x3 + x4 ≤ 8.
If x5 = 0, x1 + x2 + x3 + x4 + x5 = 10, where xi ≥ 0 for i=1, 2, ..., 4. Therefore, there are (13C3) = 286 possible outcomes.
If x5 = 1, x1 + x2 + x3 + x4 + x5 = 9, where xi ≥ 0 for i=1, 2, ..., 4. Therefore, there are (12C3) = 220 possible outcomes.
Thus, number of possible outcomes when at least 2 of the 10 are trout = 1001 - 286 - 220 = 495.
Is my approach correct? Am I double-counting by considering the 2 complement cases?