A planar graph is a graph that can be drawn on a plane without any edges crossing each other. This property is fundamental in graph theory, as it allows us to visualize complex relationships in a simpler way.
Euler’s Formula: For a connected planar graph, the relationship between vertices (V), edges (E), and faces (F) is given by:
V - E + F = 2
Consider the following graph:
A
/ \
B---C
\ / \
D E
In this graph:
Using Euler’s formula:
Kuratowski’s Theorem states that a finite graph is non-planar if and only if it contains a subgraph that is a subdivision of either the complete graph K5 (5 vertices, each connected to every other vertex) or the complete bipartite graph K3,3 (two sets of 3 vertices, where each vertex in one set is connected to all vertices in the other set).
A
/|\
/ | \
B--C--D
\ | /
\|/
E
A D
|\ /|
| \ / |
| \ / |
B---C---E
| / \ |
|/ \ |
C F
Understanding planar graphs and Kuratowski’s Theorem is essential for anyone studying graph theory. By identifying whether a graph can be drawn without crossings and recognizing the significance of K5 and K3,3, you can determine the planarity of various graphs.
In this article, we covered the definition and characteristics of planar graphs, provided practical examples, and discussed Kuratowski’s Theorem. This foundational knowledge will aid you in further exploring the intricate field of graph theory.