For any sequence of real numbers, one can always find a subsequence that is monotone

Unfortunately it isn't. In case 1, your subsequence is getting closer to the limit but it might still be alternating above and below. Consider applying your procedure to the sequence: $1, -\frac{1}{2}, \frac{1}{3}, -\frac{1}{4}, \frac{1}{5}, -\frac{1}{6}, ...$.

You can fix this by splitting it into two subsequences: above and below. One of these might be finite or empty but they cannot both be. So, you will have at least one monotone subsequence.

Case 2 also has problems. Consider the sequence $1, -1, 1, -1, 1, -1, 1, -1, ...$.


Neither case is good. Case 1 is not good because you are just saying that successive elements $x_{n_k}$ are closer to $x$, but nothing about their order (consider the sequence $x_n = (-1)^n/n$). Although I suspect you just forgot to write out the details of this (it is easily fixable, the minor fix is given in the final paragraph). Case 2 is not good because it is mentioned in the comments by Ricky Nelson.

Here is a sort of cleaned up proof that reduces the problem to something like your Case 1: $x_n$ is either bounded or unbounded. If it is unbounded, assume without loss of generality that it is unbounded above. Then the problem is done.

Now assume it is bounded. If the sequence does not converge, then take a convergent subsequence using Bolzano Weierstrass to reduce to the case when $x_n$ converges.

Now we do a clean proof of the case where $x_n \to x$. Either there are infinitely many $x_n \geq x$ or infinitely many $x_n \leq x$. Assume without loss of generality that there are infinitely many $x_n \leq x$ (this is the step you missed in your proof). If there exists $\epsilon > 0$ such that there exists some $x_n < x - \epsilon$, then take that to be the first element $x_{n_1}$. Continue recursively, and if there is no such $\epsilon > 0$, then let the rest of the elements of the subsequence be $x$. Then this sequence is monotonically increasing, so we are done.

EDIT: hm, the final paragraph is weirdly wordy, instead of "If there exists $\epsilon > 0$ such that there exists some $x_n < x - \epsilon$", we could just say "If there exists some $x_n < x$".