Planar Graphs
Core Titles
Key headlines and terms for quick recall- Planar graph — drawable in the plane without edge crossings
- Plane graph (a specific embedding)
- Region / Face — including unbounded outer face
- Euler's formula for connected planar graphs
- for simple planar graphs,
- and are non-planar
- Kuratowski's theorem, Wagner's theorem
Basic Idea
What it is, why it matters, how it worksWhat is a planar graph?
A graph is planar if it can be drawn in the plane so that no two edges cross. Such a drawing is a plane embedding, dividing the plane into regions (faces) including one unbounded outer face.
Euler's formula
For any connected planar graph: where = vertices, = edges, = faces.
Edge bound
For a simple connected planar graph with : This follows because every face is bounded by at least 3 edges and each edge borders at most 2 faces: . Substituting into Euler gives the bound.
For a bipartite planar simple graph (no odd cycles, so face length ):
Non-planar examples
- : , . Bound says . So is non-planar.
- : bipartite, , . Bound: . Hence non-planar.
Kuratowski's theorem
A graph is planar iff it does not contain a subdivision of or .
Wagner's theorem (equivalent)
A graph is planar iff it has neither nor as a minor.
Why this matters in Data Science
VLSI layout, network topology, map drawing, graph visualization.
Mind Map
Visual structure of the conceptPLANAR GRAPHS
├── Definition: drawable without crossings
├── Plane embedding ⇒ Faces
├── Euler formula: V − E + F = 2
├── Edge bounds
│ ├── Simple planar: E ≤ 3V − 6
│ └── Bipartite planar: E ≤ 2V − 4
├── Non-planar
│ ├── K₅ (5 vertices, 10 edges)
│ └── K₃,₃ (bipartite, 9 edges)
└── Characterizations
├── Kuratowski: no K₅ / K₃,₃ subdivision
└── Wagner: no K₅ / K₃,₃ minor
Exam Q&A
Part A (2 marks) and Part B (20 marks) style questionsPart A (2 marks each)
Q1. Define a planar graph. A graph that can be drawn in the plane such that no two edges cross.
Q2. State Euler's formula for connected planar graphs. .
Q3. Why is non-planar? , violating the planarity edge bound.
Q4. State Kuratowski's theorem. A graph is planar iff it contains no subdivision of or .
Part B (20 marks)
Q. State and prove Euler's formula for planar graphs. Derive the edge bound and use it to prove that and are non-planar.
Euler's formula. For any connected planar graph, .
Proof by induction on . Base : The graph is a tree, (only the outer face). Then . ✓
Inductive step. Assume the formula for any connected planar graph with edges. Take a connected planar graph with edges. If it has a cycle, remove one edge from the cycle. The graph remains connected, the number of faces decreases by 1 (two faces merge into one). The relation gives . ∎
Edge bound for a simple connected planar graph with .
Each face is bounded by at least 3 edges, and each edge borders at most 2 faces: Substitute into Euler:
is non-planar. , . Bound: . But — contradiction. So is non-planar.
is non-planar. It is bipartite, so every cycle has length and every face edges. Hence , giving . For : , . Bound: . But — contradiction. So is non-planar. ∎