Is the set of upper bounds squared either empty or a singleton?

51 Views Asked by At

Let $(P, \leq)$ be a partially ordered set, and let $A$ be a subset of $P$. The set $UB(A)$ is the set of upper bounds of $A$, where upper bound means greater than or equal to every element of $A$. Now, what happens if we form $UB(UB(A))$? I conjecture that it is either empty (if $P$ has no maximum), or it is a singleton (if $P$ does have a maximum). Is this correct?

1

There are 1 best solutions below

0
On BEST ANSWER

Your conjecture is not quite right, for two reasons.

First, you've forgotten the case when $UB(A) = \varnothing$. Then $UB(UB(A)) = P$, since every element of $P$ is an upper bound for the empty set.

Second, it's possible to get $UB(UB(A))$ to be a singleton even when $P$ has no greatest element - all you need is that $UB(A)$ has a greatest element, not all of $P$.

For an example demonstrating both behaviors, let $P = \{a,b\}$ with $a$ and $b$ incomparable. Then $UB(UB(\{a,b\})) = UB(\varnothing) = \{a,b\}$. And on the other hand, $UB(UB(\{a\}) = UB(\{a\}) = \{a\}$, even though $P$ has no greatest element.


To answer the question correctly, let's consider $UB(X)$ where $X\subseteq P$ is any upwards-closed set.

  • If $X$ is empty, then $UB(X) = P$.
  • If $X$ is non-empty, then $u$ is an upper bound for $X$ if and only if $u$ is a greatest element of $X$. Indeed, a greatest element of $X$ is just an upper bound for $X$ that happens to be an element of $X$. If $u$ is any upper bound for $X$, then there is some $x\in X$ with $x\leq u$ (since $X$ is nonempty), and hence $u\in X$ (since $X$ is upwards-closed), so $u$ is a greatest element of $X$. Now greatest elements are unique if they exist, so: $$UB(X) = \begin{cases} \varnothing & \text{ if $X$ has no greatest element}\\ \{g\} & \text{ if $X$ has a greatest element $g$}.\end{cases}$$

Now for an arbitrary set $A\subseteq P$, just note that $UB(A)$ is upwards-closed and apply the above to get: $$UB(UB(A)) = \begin{cases} P & \text{ if $A$ has no upper bound}\\ \varnothing & \text{ if $A$ has an upper bound but no greatest upper bound}\\ \{g\} & \text{ if $A$ has a greatest upper bound $g$}.\end{cases}$$