728x90
반응형
문제출처
광주과학기술원 GIST 최정옥 교수님의 “그래프 이론” 수업, 2024년 가을학기 중 Homework 9
Solution
1. Decide the order of all vertices.
2. First, place all the vertices with degG(v)>i. Next, place the remaining vertices.
3. By the given definition of ei(G), the number of vertices with degG(v)>i is ei(G).
- By the given assumption, ei(G)≤i+1.
- Thus, ei(G) is at most i+1.
4. Apply the Greedy Coloring algorithm with this arrangement:
- First, vertices with degG(v)>i will be colored. They need at most i+1 colors.
- The remaining vertices with degG(v)≤i are only adjacent to previously colored vertices, so no additional colors are required.
5. Therefore, by Greedy Coloring, χ(G)≤i+1.
6. Below is an example graph H with e4(H)=4≤5.
- This graph H contains a subgraph K4 (highlighted in orange). Thus, χ(H)≥4.
- The graph is properly colored with 4 colors (1, 2, 3, 4), so it is 4-colorable.
- Therefore, χ(H)=4.

728x90
반응형