Quiz 2
Registry Synced

Graph Coloring and Planarity

264 words
1 min read

Reading compass

Now · 6.1 Vertex Coloring

Graph Coloring and Planarity

6.1 Vertex Coloring

A proper coloring assigns colors to vertices so adjacent vertices have different colors. Chromatic number χ(G)\chi(G) = minimum number of colors needed.

Bounds

  • χ(G)Δ(G)+1\chi(G) \leq \Delta(G) + 1 (greedy coloring bound)
  • χ(G)ω(G)\chi(G) \geq \omega(G) (clique number)
  • Every planar graph has χ(G)4\chi(G) \leq 4 (Four Color Theorem)

6.2 Planar Graphs

A graph is planar if it can be drawn without edge crossings.

Euler's Formula

For planar graphs: VE+F=2V - E + F = 2 (including the outer face). Corollary: For planar GG with V3V \geq 3: E3V6E \leq 3V - 6.

Non-Planar Graphs

  • K5K_5 (complete graph on 5 vertices) — non-planar
  • K3,3K_{3,3} (complete bipartite) — non-planar Kuratowski's Theorem: A graph is non-planar iff it contains a subdivision of K5K_5 or K3,3K_{3,3}.

✅ Practice Questions

Q1: Find χ(Kn)\chi(K_n).
Solution
χ(Kn)=n\chi(K_n) = n — every vertex must have a distinct color since all pairs are adjacent. Q2: Is K4K_4 planar? Verify Euler's formula. Solution
Yes, K4K_4 can be drawn as a triangle with a vertex inside. V=4,E=6,F=4V=4, E=6, F=4. 46+4=24-6+4=2. ✓ Q3: Show K3,3K_{3,3} is non-planar. Solution
If K3,3K_{3,3} were planar, by Euler: E3V6=3(6)6=12E \leq 3V - 6 = 3(6)-6 = 12. But K3,3K_{3,3} has 3×3=93 \times 3 = 9 edges, which satisfies this inequality. Need stronger argument: In a bipartite planar graph, E2V4E \leq 2V - 4. 92(6)4=89 \leq 2(6)-4 = 8 is false. So K3,3K_{3,3} is non-planar. Join Discord PreviousGraph Theory BasicsNextGraph Coloring Apps
Document outline

Keep your place and jump directly to a heading.

Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.