Planar Graphs and Euler's Formula

College Depth 60 in the knowledge graph I know this Set as goal
Unlocks 31 downstream topics
planar-graphs euler-formula kuratowski faces four-color-theorem

Core Idea

A graph is planar if it can be drawn in the plane with no edge crossings. For any connected planar graph, Euler's formula states V − E + F = 2, where V, E, F are the counts of vertices, edges, and faces (including the unbounded outer face). This implies every simple planar graph satisfies E ≤ 3V − 6, providing a quick non-planarity test. Kuratowski's theorem characterizes planarity completely: a graph is planar if and only if it contains no subdivision of K₅ or K₃,₃.

How It's Best Learned

Draw K₄ without crossings to see planarity, then try and fail with K₅ and K₃,₃. Apply Euler's formula to derive the edge bound and use it to prove specific graphs are non-planar. Connect to map coloring (planar graphs model maps) as a natural application of the four-color theorem.

Common Misconceptions

Explainer

A graph is planar if it can be drawn in the plane with no two edges crossing. Notice the careful phrasing: it is not that a specific drawing is crossing-free, but that *some* drawing exists with no crossings. K₄ (four vertices, every pair connected) looks tangled when drawn naively, but it can be redrawn with one vertex inside a triangle — no crossings. That's enough to make it planar. The question is always existential: does any valid embedding exist?

When a planar graph *is* drawn without crossings, its edges divide the plane into regions called faces. Count the regions, including the unbounded outer region that surrounds the whole drawing. For any connected planar graph, these quantities satisfy a remarkable identity discovered by Euler: V − E + F = 2, where V is vertices, E is edges, and F is faces. Try it on K₄ drawn as a triangle with an interior point: V = 4, E = 6, F = 4 (three inner faces plus the outer). Indeed 4 − 6 + 4 = 2. This identity is not just a curiosity — it is a powerful counting tool.

The most useful application of Euler's formula is proving non-planarity without finding a specific bad drawing. In any simple planar graph, every face is bounded by at least 3 edges, and every edge borders at most 2 faces, giving 3F ≤ 2E. Substituting F = 2 − V + E from Euler's formula yields E ≤ 3V − 6. For K₅: V = 5, so 3V − 6 = 9, but E = 10. Since 10 > 9, K₅ cannot be planar. This one inequality, derived from Euler's formula, immediately disqualifies K₅ without any case analysis on drawings.

Kuratowski's theorem completes the picture by giving an exact characterization: a graph is planar if and only if it contains no *subdivision* of K₅ or K₃,₃ as a subgraph (a subdivision replaces edges with paths through new vertices). This means non-planarity always reduces to one of these two "obstructions." Your prerequisite on graph connectivity matters here because Euler's formula applies to connected planar graphs; for disconnected graphs the formula generalizes to V − E + F = 1 + C where C is the number of connected components. The four-color theorem — that every planar map can be colored with four colors — is one of the deepest downstream applications of planarity theory.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesLiteral EquationsSlope-Intercept FormPoint-Slope FormWriting Linear EquationsParallel and Perpendicular Line SlopesGraphing Linear EquationsSystems of Equations — Graphing MethodSystems of Equations — Elimination MethodSystems of Three VariablesMatrices IntroductionGraph Representation: Matrices and ListsGraph Paths, Cycles, and ConnectivityTrees and Spanning TreesPlanar Graphs and Euler's Formula

Longest path: 61 steps · 269 total prerequisite topics

Prerequisites (2)

Leads To (4)