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

GraphBoundPlanar?
4,6 βœ“yes
5,10no
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 / StateGraph vs boundVerdict
0 (Init)β€”β€”β€”
1planar
2nonplanar
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