We have $6$ lawyers, $7$ engineers and $4$ doctors. We plan on making a committee of $5$ people, and we want at least one person of each profession on board. So for the first place I choose an engineer, for the second a doctor and for the third a lawyer, leaving only $5$ laywers, $6$ engineers and $3$ doctors left.
For the remaining two places, I could have $2$ more people of a single profession. This is $\binom{5}{2}+\binom{6}{2}+\binom{3}{2}$ possibilities.
I could also have two people of different professions; a doctor and a laywer, $\binom{5}{1}\binom{3}{1}$; a doctor and an engineer, $\binom{6}{1}\binom{3}{1}$; or an engineer and a laywer $\binom{6}{1}\binom{5}{1}$.
This adds up to $\binom{5}{2}+\binom{6}{2}+\binom{3}{2}+\binom{5}{1}\binom{3}{1}+\binom{6}{1}\binom{3}{1}+\binom{6}{1}\binom{5}{1}=91$ possible committees.
I have two questions regarding my approach to the problem. Question $a)$ is the reasoning right, am I not overcounting? $b)$ Even if it is right, is there a simpler way to do this? You can see that the sum I end up with, though relatively simple, is quite long and tedious.
Thanks in advance!
I think Inclusion Exclusion is an easier approach.
If we ignore the restriction, there are $\binom {17}5$ ways to choose the group.
We then exclude the choices which miss one specified profession. That's an exclusion of $$\binom {11}5+\binom {10}5+\binom {13}5$$.
We then add back the cases in which all the people come from one profession. Thus we add back $$\binom 65+\binom 75$$
Thus the answer is $$\binom {17}5-\left(\binom {11}5+\binom {10}5+\binom {13}5\right)+\left(\binom 65+\binom 75\right)=\boxed {4214}$$