How many ways could one create a binary number of n digits where the number of 1s and 0s are equal?
For example, if n was 8 then we could have:
10101010
or
11110000
In addition to this, I may add that numbers such as:
00001111
are allowed as I am concerning the application of 1 and 0 as abstract ideas.So 1 and 0 could easily be replaced by "banana" and "apple" or (in better context) "y+1" and "x+1".
Pick $n$ of the $2n$ digits to put one's in: $$\binom{2n}{n}=\frac{(2n)!}{(n!)^2}$$