I know that ${n \choose 0} = 1$, and this makes sense to me based on my understanding of combinatorics.
But what about ${n \choose -1}$? My instinct is that this is undefined, since it is equivalent to $\frac{n!}{k!(n - k)!}$, which when $k = -1$ equals $\frac{n!}{(-1)!(n + 1)!}$, and factorials are only defined for non-negative integers.
Similarly, ${5 \choose 6} = \frac{5!}{6!(5 - 6)!} = \frac{5!}{6!(-1)!}$ should also be undefined. However, intuitively it seems to me that "5 choose 6" could also equal $0$, since there are no combinations of 6 objects to be made from a set of only 5 objects.
So, is $n \choose k$ defined when $k < 0$? What about $n < k$? And in either case, what's the reasoning?