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 , let be a vertex of degree 5, and let denote the set of neighbors of . Since is degree 5, there are at most 10 edges among these neighbors. However, for to be planar, it must satisfy Euler's formula:
where is the number of faces. Additionally, a planar graph cannot contain a complete subgraph as a minor, meaning cannot induce . Thus, it is impossible for all pairs of neighbors to be connected. Therefore, there must exist two neighbors and such that .
Part (b): Planarity of
The graph is obtained by removing the vertices from and introducing a single new vertex adjacent to:
Key Argument for Planarity:
- Removing and its neighbors reduces the graph locally but does not fundamentally alter its planarity because planarity is preserved under edge contraction and vertex removal.
- Adding back to reconnect the remaining neighbors respects planarity because is a single vertex that does not create crossings that would violate the planar embedding.
By definition, the reconstruction of the graph with does not exceed the conditions of Euler's formula or result in forbidden minors like or . Thus, remains planar.
Part (c): 5-Coloring from
Procedure for 5-Coloring :
- Begin with a valid 5-coloring of .
- Since replaced , assign the colors of based on the color of :
- Remove 's color from the available 5 colors.
- Recolor to avoid conflicts with their neighbors.
- This step is always feasible because has only 5 neighbors and hence at least one available color for each vertex.
Algorithm for 5-Coloring Planar Graphs:
- Start with a planar graph .
- Identify a vertex of degree at most 5 (exists by the Four Color Theorem's structure).
- Reduce by replacing and up to two of its neighbors with , forming .
- Recursively 5-color .
- Expand back to by restoring and assigning colors as described.
Complexity Discussion:
- Each step of removing and its neighbors reduces the graph's size. If has vertices, the recursion depth is .
- Each coloring step involves checking the neighbors of at most 5 vertices, making it for each vertex.
- The overall complexity is , which is efficient for planar graphs.
Follow-Up Questions:
- Why can Euler's formula help determine the absence of in planar graphs?
- How does the degree constraint of planar graphs influence the coloring algorithm?
- Can the proposed method generalize to graphs of maximum degree ?
- What are the key differences between this approach and methods using Kempe chains?
- 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 and , 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
Related Recommendation
Planarity Analysis of Graphs K3,3 and K5
Proof: Every Outerplanar Graph has a Chromatic Number of at Most 3
Graph Theory: Planar Graphs, Eulerian Circuit, and Bridges
Chromatic Number of Various Graphs Including Cycles, Complete Graphs, and Bipartite Graphs
Proof of χ(G) ≤ 4 for Planar Graphs with No K_3 Subgraph