Planar Graph — Definition, Formula & Examples
A planar graph is a graph that can be drawn on a flat surface so that none of its edges cross each other. Every drawing might look tangled, but if at least one crossing-free arrangement exists, the graph is planar.
A graph is planar if there exists an embedding of in the Euclidean plane such that its edges intersect only at their common vertices. Such a crossing-free embedding is called a plane graph.
Key Formula
Where:
- = Number of vertices in the connected plane graph
- = Number of edges
- = Number of faces, including the outer (unbounded) face
How It Works
To check whether a simple graph might be planar, start with Euler's formula: for any connected plane graph, , where , , and are the numbers of vertices, edges, and faces (including the unbounded outer face). A useful corollary is that every simple planar graph satisfies . If your graph has more edges than this bound allows, it cannot be planar. Two classic non-planar graphs are (the complete graph on 5 vertices) and (the complete bipartite graph with parts of size 3). By Kuratowski's theorem, a graph is planar if and only if it contains no subdivision of or .
Worked Example
Problem: Determine whether the complete graph (4 vertices, each connected to every other) is planar, and verify Euler's formula for it.
Count vertices and edges: has 4 vertices. The number of edges in a complete graph on vertices is .
Check the edge bound: For a simple planar graph, . Substituting :
Verify Euler's formula: Draw as a triangle with one vertex inside, connected to all three corners. This gives no crossings. Count the faces: 3 inner triangular regions plus 1 outer face, so .
Answer: is planar. It satisfies both the edge bound () and Euler's formula ().
Why It Matters
Planar graphs appear in circuit board design, where wires on a single layer must not cross. They are also central to map coloring problems — the Four Color Theorem guarantees that any planar graph can be vertex-colored with at most four colors. In computer science courses, planarity testing is a key topic in algorithm design.
Common Mistakes
Mistake: Concluding a graph is non-planar because one particular drawing has crossings.
Correction: A graph is non-planar only if no possible drawing avoids crossings. Try rearranging vertices before concluding, or use the edge bound or Kuratowski's theorem.
