The following question comes from an American Olympiad problem. The reason why I am posting it here is that, although it seems really easy, it allows for some different and really interesting solutions. Do you want to give a try?
Let $n$ be one million. Find the maximum value attained by $\binom{n}{x+1}-\binom{n}{x}$, where $0<x<n$ is an integer.
Edit: I saw the answers below, and I can say that I posted this one because there is at least one really nice solution, which is not so "mechanical" :) The value of $n$ has no particular meaning, it stands just for a "sufficiently large integer"..
Let $$f(x)=\binom{n}{x+1}-\binom{n}{x},$$ then $$f(x)-f(x-1)=\frac{n!(4x^2-4nx+n^2-n-2)}{(x+1)!(n-x+1)!}$$
The roots of the quadratic are $$\frac{n\pm\sqrt{n+2}}{2}$$
Hence $f(x)>f(x-1)$ up to $\frac{n-\sqrt{n+2}}{2}$.
For $$x>\frac{n+\sqrt{n+2}}{2}$$
it is clear that $f(x)<0$.
So maximum $f(x)$ at $$x=\left\lfloor\frac{n-\sqrt{n+2}}{2}\right\rfloor=\left\lfloor\frac{1000000-\sqrt{1000002}}{2}\right\rfloor=499499$$