IS CS-2022W-02
题目来源:Problem 2 日期:2024-07-18 题目主题:CS-离散数学-图论
具体题目
Let be
a simple undirected graph with the vertex set and edge set . For an -dimensional vector , define by
Answer the following questions.
- For the case where is a complete graph of vertices, compute .
- Let and be those given in question (1). Let be the number of edges of . Compute
- Let be an arbitrary simple undirected graph. When each takes a value of either or with probability independently, compute the expected value of . You may use the linearity of expectation.
- Show that, for any simple undirected graph , there exists some such that
Here, denotes the number of edges of .
正确解答
Question 1
For , a complete graph with vertices, every pair of distinct vertices is connected by an edge. Thus, the edge set has edges.
To compute , consider the definition of :
For each edge , the term is either or :
To maximize , we need to maximize the number of edges where . Let be the number of vertices where , and be the number of vertices where .
The number of edges between vertices with and is . Therefore:
We need to maximize . The function is a quadratic function in with its maximum value when .
Case 1: is even
When is even, let . Then:
Case 2: is odd
When is odd, let or . Either way, is maximized when the sizes of the two groups differ by at most one. Therefore:
or
Since and , we have:
Thus:
In conclusion:
Question 2
The number of edges in a complete graph is .
Using the result from Question 1:
We have:
Thus,
Question 3
Let be an arbitrary simple undirected graph, and with each taking values or independently with probability .
To find the expected value of , use the linearity of expectation:
Now, consider :
since and are independent and each has expectation (values are or with equal probability).
Thus,
Therefore,
Question 4
To show that there exists some such that , consider the expected value derived in Question 3.
We have:
Since is the average value of over all possible , there must be at least one particular for which . Otherwise, the average value could not be .
Therefore, there exists some such that:
知识点
难点解题思路
在第 1 题中,找到使得 最大的 是关键。在处理完全图时,可以通过对称性和顶点划分来简化问题。对于一般图,期望值和线性期望的使用使得问题更易处理。
解题技巧和信息
对于复杂的图论问题,可以通过图的对称性来简化问题。期望值的计算可以利用线性期望的性质,使得问题转化为求和问题。求极大值时,可以考虑图的特殊结构,例如完全图的顶点划分。
重点词汇
graph 图
complete graph 完全图
edge 边
vertex 顶点
expected value 期望值
参考资料
- Bollobás, B. (1998). Modern Graph Theory. Springer. Chap. 1-3.