Planar Graphs and Graph Coloring Practice Questions

Last Updated : 10 Jul, 2026

Planar Graphs and Graph Coloring are important concepts in graph theory. A planar graph is a graph that can be drawn on a plane without any edges crossing each other. Graph coloring is the process of assigning colors to the vertices of a graph so that no two adjacent vertices have the same color. These concepts are widely used in scheduling, map coloring, networking, and resource allocation problems.

Example:

A triangle graph is a planar graph because it can be drawn without any edges crossing. To color this graph, three different colors are required so that no two connected vertices have the same color.

Question 1: Determine if the following graph is planar and find its chromatic number.

Graph: K4 (Complete graph with 4 vertices)

Solution:

K4​ is planar because it can be drawn without any edges crossing.

Chromatic number: 4 (each vertex connects to every other vertex).

Question 2: Determine if K3,3​ is planar.

Solution:

K3,3​ is not planar as it cannot be drawn without edges crossing (Kuratowski's Theorem).

Question 3: Given a planar graph with 6 vertices and 9 edges, find the number of faces.

Solution:

Using Euler's formula:

V−E+F = 2  ⟹  6−9+F = 2  ⟹  F = 5

Question 4: Find the chromatic number of a cycle graph with an odd number of vertices, say 5.

Solution:

For an odd cycle, the chromatic number is 3.

Question 5: Find the chromatic number of a bipartite graph.

Solution:

A bipartite graph is 2-colorable.

Question 6: Determine if the Petersen graph is planar.

Solution:

The Petersen graph is not planar.

Question 7: Find the chromatic number of the following planar graph: C5∪C3.

Solution:

Each cycle has a chromatic number of 3, so the combined graph has a chromatic number of 3.

Question 8: Verify Euler's formula for a graph with 8 vertices, 12 edges, and 6 faces.

Solution:

8−12+6 = 2(Holds true)

Question 9: Determine if the following graph is planar and find its chromatic number. Graph: K2,3

Solution:

K2,3 is planar.

Chromatic number: 2 (bipartite graph).

Practice Problems

1. Determine if K4 is planar and find its chromatic number.

2. Given a planar graph with 10 vertices and 15 edges, find the number of faces.

3. Find the chromatic number of a star graph Sn with n leaves.

4. Prove that a tree is 2-colorable.

5. Given a planar graph with 12 vertices and 18 edges, determine if Euler’s formula holds.

6. Find the chromatic number of a wheel graph Wn with n spokes.

7. Determine if the dodecahedron graph is planar.

8. Given a graph G with V vertices and E edges, if G is planar and E = 3V − 6, find the number of faces.

9. Find the chromatic number of a complete bipartite graph Km,n.

10. Determine if the graph C4 ∪ K2 is planar and find its chromatic number.

Comment

Explore