How many ways are there to choose a committee from $n$ boys and $n$ girls such that there are strictly more boys than girls?
You can express your answer in exponents and factorials.
How many ways are there to choose a committee from $n$ boys and $n$ girls such that there are strictly more boys than girls?
You can express your answer in exponents and factorials.
Let's assume that a "committee" just means a subset of the $2n$ kids. There is some ambiguity there since it isn't clear if the empty set is a committee or not, but that won't matter here as the condition isn't satisfied. We'll allow the empty set to be a committee...it's easy to see that the final result won't change if that case is excluded.
There are $2^{2n}$ possible committees. These come in three types: more boys, more girls, same number of boys and girls. Clearly the first two types have the same number, call it $F(n)$. The number of committees with the same number of boys and girls is $$\sum_{i=0}^n\binom ni^2=\binom {2n}n$$
(for a proof of this equality, see this question)
Thus we have $$2F(n)+\binom {2n}n=2^{2n}\implies \boxed {F(n)=\frac 12\times \left(2^{2n}-\binom {2n}n\right)}$$
Let $b$ be the number of boys, and $g$ be the number of girls. There are $n$ boys to pick from and $n$ girls to pick from:
$$\sum\limits_{b=1}^n \sum\limits_{g=0}^{b-1} {n \choose b} {n \choose g}$$
The cleverer way to approach it is find the number of ways you can get exactly the same number of boys and girls:
$$K= \sum\limits_{k=0}^n \left( {n \choose k} \right)^2$$
Then take the total number of ways you can choose any number of boys and any number of girls, call it $R$. Subtract the above ($K$) from this number, i.e., $R-K$. In half of these the boys outnumber the girls; in the other half the girls outnumber the boys.
Can you do the arithmetic?