A bag contains $n$ white and $n$ black balls, all of equal size. Balls are drawn at random. Find the probability that there are both white and black balls in the draw and that the number of white balls is greater than that of black balls by $1$.
The total number of possible draws will be the number of subsets of a set with $2n$ elements (minus the empty set) since we have $2n$ balls, hence $2^{2n} - 1$. The number of draws satisfying the conditions there's both white and black in the draw and also the number of white being greater than that of black by $1$ involves computing the following sum:$$\binom{n}{2} \binom{n}{1} + \binom{n}{3} \binom{n}{2} + \ldots + \binom{n}{n-1} \binom{n}{n-2} + \binom{n}{n} \binom{n}{n-1},$$which I don't know how to do. Could anybody help? Thanks. I've tried playing around with paths on an $n \times n$ grid, also an $2n \times n$ grid to come up with a combinatorial proof, not to any success.