I'm brushing up on some basics for an upcoming job interview, and I've got myself confused over a question about combined combinations.
From Discrete Mathematics with Graph Theory Third Edition by Goodaire & Parmenter, Section 7.2, Exercise 1:
A group of people is comprised of six from Nebraska, seven from Idaho, and eight from Louisiana.
(a) In how many ways can a committee of six be formed with two people from each state?
(b) In how many ways can a committee of seven be formed with at least two people from each state?
I'm fine with part (a). I got the same solution as is in the back of the book:
$\binom{6}{2} \binom{7}{2} \binom{8}{2} = 8820$
But with part (b), I was thinking that the answer would be the result from part (a), multiplied by the number of ways you could choose one more person from the total pool of remaining people:
$\binom{6}{2} \binom{7}{2} \binom{8}{2} \binom{15}{1} = 132,300$
The answer in the back of the book is
$\binom{6}{3} \binom{7}{2} \binom{8}{2} + \binom{6}{2} \binom{7}{3} \binom{8}{2} + \binom{6}{2} \binom{7}{2} \binom{8}{3} = 44,100$
I haven't touched this stuff in a while, so I'm inclined to believe the authors, but my logic still makes sense to me.
What is the problem with the way I'm thinking about the answer?