Skip to content

Commit bb4556c

Browse files
KirillSmirnovrzach
authored andcommitted
Fix definition of a well-ordered set.
An empty subset does not have a least element, so it must be excluded. The definition of a minimal element was actually a definition of a least element.
1 parent 08e3042 commit bb4556c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • content/sets-functions-relations/relations

content/sets-functions-relations/relations/trees.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141

4242
The ancestor relation in a tree is a strict partial order. This
4343
motivates the set-theoretic definition. To state it we need two
44-
concepts. A \emph{minimal element} in a set~$A$ partially ordered
44+
concepts. A \emph{least element} in a set~$A$ partially ordered
4545
by~$\le$ is !!a{element} $x \in A$ such that for all $y \in A$ we have
4646
that~$x \le y$. A set is \emph{well-ordered} by~$\le$ if every one of
47-
its subsets has a minimal element.
47+
its non-empty subsets has a least element.
4848

4949
\begin{defn}[Tree]
5050
A \emph{tree} is a pair $T = \tuple{A, \le}$ such that $A$ is a set
51-
and $\le$ is a partial order on~$A$ with a unique minimal element
51+
and $\le$ is a partial order on~$A$ with a unique least element
5252
$r \in A$ (called the \emph{root}) such that for all $x \in A$,
5353
the set $\Setabs{y}{y \le x}$ is well-ordered by~$\le$.
5454
\end{defn}
@@ -71,7 +71,7 @@
7171
\begin{proof}
7272
Suppose $y_1 < x$ and $y_2 < x$ and $y_1 \neq y_2$. Then $\{y_1,
7373
y_2\} \subseteq \Setabs{z}{z<x}$. Since $\Setabs{z}{z<x}$ is
74-
well-ordered by~$\le$, its subset $\{y_1, y_2\}$ has a minimal
74+
well-ordered by~$\le$, its subset $\{y_1, y_2\}$ has a least
7575
element, which obviously must be either $y_1$ or~$y_2$. So either
7676
$y_1 \le y_2$ or $y_2 \le y_1$. We assumed that $y_1 \neq y_2$, so
7777
actually either $y_1 < y_2$ or $y_2 < y_1$. Since we assumed that

0 commit comments

Comments
 (0)