Is the following provable and how? I feel like I am missing some proof technique or strong theorems, I'd be grateful for any pointer.
Let $(I, \leq)$ be an upwards-directed poset. Define an $f: I \to \{a,b\}$ such that $f$ is not eventually constant.
Upwards-directed ("every path can be recombined"): $\forall i_1, i_2 \in I\ \exists j \in I.\quad j \geq i_1, j \geq i_2$.
Eventually constant ("a path on which $f$ is constant"): $\exists C \in \{a, b\}\ \exists i \in I\ \forall j \geq i.\quad f(j) = C$
If $I = (\mathbb{N}, \leq)$ with the usual ordering, then my solution would be:
Set $f(0) := a$ and inductively choose $f(n + 1) \neq f(n)$.
Or put differently, define $f$ recursively by $$f(n) = \begin{cases} a &, n = 0 \\ \mathrm{flip}(f(n-1)) &, n > 0. \end{cases}$$
In general, if $I$ is wellordered, then such a (non-constructive) definition by transfinite recursion works.
What if $I$ is not wellordered? While the set $I$ can always be wellordered, that assigned order is not necessarily compatible with the old order.
The question popped up while attempting an exercise in Dr. Pete L. Clark's notes on nets & filters in topology, p. 10f., exercise 3.1.11. It asks readers to prove the following statement:
Within a topology $X$ we have: $$x \text{ is an isolated point} \Leftrightarrow \text{every net converging to } x \text{ is eventually constant}$$
$\Rightarrow$ is clear to me, my attempted solution for the rest:
For the direction $\Leftarrow$ I'd like to show the contraposition $$x \text{ is not isolated} \Rightarrow \exists \text{ net } f \text{ converging to x, which is not eventually constant.}$$
$x$ is not isolated, hence every neighborhood of $x$ has at least two elements. Define $f: (\mathcal{V}(x), \supseteq) \to X$ mapping neighborhoods to one of their elements, so that $f$ is not eventually constant (how?).