A unit cube is defined by $2n$ constraints of the form:
$\{ x \in \mathbb{R}^n | 0 \leq x_i \leq 1, i = 1... n \}$
Why does this give $2^n$ basic feasible solutions?
I calculated the number of basic feasible solutions like so:
$(2n) C (n)$:
$\frac{(2n)!}{n! (2n-n)!}$
$\frac{(2n)!}{n!^2}$
This expression is not equal to $2^n$.
$\binom{2n}{n}$ is not the right quantity since we can't have $x_i=0$ and $x_i=1$ at the same time. Also, note the condition of independence of constraint in the definition of BFS.
For each variable, there are $2$ options, it is either $0$ or $1$, hence we have $2^n$ BFS for a unit cube.