Loading [MathJax]/jax/output/CommonHTML/jax.js
Let $e_i(G)$ denote the number of vertices of G whose degree is strictly greater than i. Use the greedy algorithm to show that if $e_i(G) \leq i + 1$ for some i, then $\chi(G) \leq i + 1$. Find an example H that satisfies $e_4(H) \leq 5$ and compute  χ(H)
Graph Theory

Let ei(G) denote the number of vertices of G whose degree is strictly greater than i. Use the greedy algorithm to show that if ei(G)i+1 for some i, then χ(G)i+1. Find an example H that satisfies e4(H)5 and compute χ(H)

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)=45.

  • 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
반응형