偏序 - 有限集 - 最小元素
通过归纳法证明。非空有限集合上的每个偏序至少有一个最小元素。
我如何解决这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
通过归纳法证明。非空有限集合上的每个偏序至少有一个最小元素。
我如何解决这个问题?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果偏序集中只有一个元素,那么这显然是正确的。现在假设对于所有大小 < 的集合都成立。名词将第 n 个元素与我们知道存在的 (n-1) 偏序集的最小元素进行比较。它要么是新的最低限度,要么不是,要么是无与伦比的。无论如何都没关系。 (为什么?)
It is trivially true if there is only one element in the poset. Now suppose it is true for all sets of size < n. Compare the nth element to the minimal element of the (n-1) poset, which we know to exist. It will either be the new minimal or not or incomparable. It doesn't matter either way. (Why?)
如果偏序的大小为 1,这是显而易见的。
假设偏序 成立,然后取大小为
n
的偏序(P,<)
。在
P
中选择x
。令P(
如果
P( 为空,则
x
是一个最小元素。否则,
P( 严格小于
P
,因为x
不在P(。所以偏序集
(P(
必须有一个最小元素
y
。此
y
必须是P
的最小元素,因为如果z 在
P
中,则z,因此
z
将在P( 中并且小于
y
,这与假设相矛盾y
在P( 中是最小的。
If the partial order has size 1, it is obvious.
Assume it is true for partial orders
<n
, and then take a partial order(P,<)
has sizen
.Pick
x
inP
. LetP(<x) = { y in P : y<x }
If
P(<x)
is empty, thenx
is a minimal element.Otherwise,
P(<x)
is strictly smaller thanP
, sincex
is not inP(<x)
. So the poset(P(<x),<)
must have a minimal element,
y
.This
y
must be a minimal element ofP
since, ifz<y
inP
, thenz<x
, and hencez
would be inP(<x)
and smaller thany
, which contradicts the assumption thaty
was minimal inP(<x)
.