I am trying to work on counting skills and came up with the following problem, however I feel that I am running into an issue of double counting or counting faulty cases.
Say there are 9 distinct birds flying in small groups. Any 4 may be leaders and any 5 may be followers, but each leader must have at least ONE follower. What number of combinations of leader/followers exist?
Attempt at solution:using n choose k (NcK)
(9c4) x [(5c2)(3c1)(2c1)(1c1) + (5c1)(4c2)(2c1)(1c1) + (5c1)(4c1)(3c2)(1c1) + (5c1)(4c1)(3c1)(2c2)]
I realize I may be counting cases where a leader(s) is without a follower... though I am not sure how to account for this. Is there a way to account for invalid cases with basic combination methods? (I am assuming there is a mistake here.)