Math Problem Statement

8 Consider a planar graph G and let v be a vertex of degree 5 . (a) Explain why there exists two vertices u, w \in N(v) such that u w \notin E(G) . (b) Let G_{v} be a graph obtained from G by removing three vertices u, v, w and replacing it by a single vertex v^{*} adjacent to N(v) \cup N(u) \cup N(w) \backslash{u, v, w} . Explain why the G_{v} is a planar graph. (c) Suggest how given a 5 -colouring of vertices of G_{v} one can obtain a 5-colouring of G . Deduce an algorithm of 5 -colouring a planar graph which does not use Kempe chains. Discuss the complexity of the algorithm.

Solution

Part (a): Proving the Existence of Non-adjacent Neighbors

For a planar graph GG, let vv be a vertex of degree 5, and let N(v)={u1,u2,u3,u4,u5}N(v) = \{u_1, u_2, u_3, u_4, u_5\} denote the set of neighbors of vv. Since vv is degree 5, there are at most 10 edges among these neighbors. However, for GG to be planar, it must satisfy Euler's formula:

VE+F=2,|V| - |E| + |F| = 2,

where F|F| is the number of faces. Additionally, a planar graph cannot contain a complete subgraph K5K_5 as a minor, meaning N(v)N(v) cannot induce K5K_5. Thus, it is impossible for all pairs of neighbors ui,uju_i, u_j to be connected. Therefore, there must exist two neighbors uu and ww such that uwE(G)uw \notin E(G).


Part (b): Planarity of GvG_v

The graph GvG_v is obtained by removing the vertices u,v,wu, v, w from GG and introducing a single new vertex vv^* adjacent to:

N(v)N(u)N(w){u,v,w}.N(v) \cup N(u) \cup N(w) \setminus \{u, v, w\}.

Key Argument for Planarity:

  • Removing vv and its neighbors u,wu, w reduces the graph GG locally but does not fundamentally alter its planarity because planarity is preserved under edge contraction and vertex removal.
  • Adding vv^* back to reconnect the remaining neighbors respects planarity because vv^* is a single vertex that does not create crossings that would violate the planar embedding.

By definition, the reconstruction of the graph with vv^* does not exceed the conditions of Euler's formula or result in forbidden minors like K5K_5 or K3,3K_{3,3}. Thus, GvG_v remains planar.


Part (c): 5-Coloring GG from GvG_v

Procedure for 5-Coloring GG:

  1. Begin with a valid 5-coloring of GvG_v.
  2. Since vv^* replaced u,v,wu, v, w, assign the colors of u,v,wu, v, w based on the color of vv^*:
    • Remove vv^*'s color from the available 5 colors.
    • Recolor u,v,wu, v, w to avoid conflicts with their neighbors.
    • This step is always feasible because vv has only 5 neighbors and hence at least one available color for each vertex.

Algorithm for 5-Coloring Planar Graphs:

  1. Start with a planar graph GG.
  2. Identify a vertex vv of degree at most 5 (exists by the Four Color Theorem's structure).
  3. Reduce GG by replacing vv and up to two of its neighbors with vv^*, forming GvG_v.
  4. Recursively 5-color GvG_v.
  5. Expand GvG_v back to GG by restoring u,v,wu, v, w and assigning colors as described.

Complexity Discussion:

  • Each step of removing vv and its neighbors reduces the graph's size. If GG has nn vertices, the recursion depth is O(n)O(n).
  • Each coloring step involves checking the neighbors of at most 5 vertices, making it O(1)O(1) for each vertex.
  • The overall complexity is O(n)O(n), which is efficient for planar graphs.

Follow-Up Questions:

  1. Why can Euler's formula help determine the absence of K5K_5 in planar graphs?
  2. How does the degree constraint of planar graphs influence the coloring algorithm?
  3. Can the proposed method generalize to graphs of maximum degree Δ6\Delta \geq 6?
  4. What are the key differences between this approach and methods using Kempe chains?
  5. How does the recursive 5-coloring ensure correctness without backtracking?

Tip:

When analyzing planar graph properties, focus on Euler's formula and forbidden minors like K5K_5 and K3,3K_{3,3}, as they provide structural insights critical to algorithm design.

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Graph Theory
Planarity
Graph Coloring

Formulas

Euler's Formula: V - E + F = 2 for planar graphs

Theorems

Four Color Theorem
Planarity criteria (K5 and K3,3 forbidden minors)

Suitable Grade Level

Grades 11-12 or Undergraduate level