Planar Graph
Context: FIT1058_MOC Β· a Graph drawable in the plane with no edge crossings Β· a drawing splits the plane into faces Β· constrained by Eulerβs formula
Quick Revision
- π― Objective: drawable with no edge crossings β edges meet only at shared endpoints.
- π¦ Core Components: plane graph β faces (incl. outer) β each edge borders β€2 faces.
- β‘ Key Constraint: edge bounds (or triangle-free) disprove planarity; minimal obstructions.
π Core
1. Planarity
- Definition β some drawing has no crossings (edges meet only at endpoints).
- Plane graph β such a drawing; regions are faces (incl. unbounded outer face).
- About existence β not any single drawing ( is planar despite its usual crossed picture).
2. Faces, Boundaries, Sides
- Face β a maximal region; boundary = closed walk of surrounding edges.
- Two sides per edge β each edge borders β€2 faces, appears twice across boundary walks.
3. Why Crossings Matter
- Costs β diagram clarity, transport bridges/tunnels, circuit layers.
Key identities:
βοΈ Core Decision Matrix
| Graph | Bound | Planar? | |
|---|---|---|---|
| 4,6 | β | yes | |
| 5,10 | no | ||
| 6,9 | (bipartite) | no | |
| trees/paths/cycles | β | β | always |
When It Flips: and are the smallest nonplanar graphs (utilities puzzle = ). A bipartite graph is triangle-free, so the stronger bound applies. Bounds come from Euler's formula.
π Exam Execution Trace
Manual Execution Trace
Edge-bound test:
| Step / State | Graph | vs bound | Verdict |
|---|---|---|---|
| 0 (Init) | β | β | β |
| 1 | planar | ||
| 2 | nonplanar | ||
| 3 | (triangle-free) | nonplanar |
β οΈ Common Mistakes
- π‘ Violating a bound proves nonplanarity; passing it does not prove planarity β passes but, being bipartite (triangle-free), breaks .
π§ Active Recall
What does planarity mean, and what are faces, boundaries, and sides?
- Hint: Existence of a crossing-free drawing.
Answer
- Short answer: Some drawing has no crossings; faces are the regions (incl. outer), boundary = closed walk of surrounding edges.
- Why: Two sides β each edge borders β€2 faces, appears twice among boundaries.
How do edge bounds prove nonplanarity, and which settle and ?
- Hint: / .
Answer
- Short answer: breaks (); (triangle-free) breaks ().
- Why: Minimal obstructions β the two smallest nonplanar graphs.