Faces and Euler's Formula
A planar drawing cuts the page into regions. Count those regions, the vertices and the edges, and the three numbers are locked together by a relationship that holds for every connected planar graph ever drawn.
Draw a triangle. How many vertices, edges and regions does it have? Be careful with the regions: you have cut the page into the inside and the outside, so there are two, not one.
In any planar drawing of a connected graph, the number of vertices, edges and faces satisfies one equation. Faces are the regions the drawing cuts the plane into, and the unbounded region outside the whole drawing is one of them.
$$v - e + f = 2$$
The outer face is the one everybody forgets. It is a genuine region, bounded by the edges on the outside of the drawing and stretching away in every direction, and leaving it out makes the formula give $1$ instead of $2$ every single time.
Know
- that a face of a planar drawing is a region of the plane bounded by edges, and that the unbounded outer region is a face
- Euler's formula $v - e + f = 2$ for a connected planar graph
- that the formula requires both a planar drawing and a connected graph
Understand
- why the face count does not depend on which planar drawing of the graph is used
- why omitting the outer face produces an answer of $1$ rather than $2$
- how the formula can prove a graph non-planar without examining any drawing of it
Can Do
- count the faces of a given planar drawing and verify Euler's formula
- use the formula to find any one of $v$, $e$ or $f$ given the other two
- apply the consequence $e \leq 3v - 6$ to show that a graph is non-planar
Take a planar drawing, one with no crossings, and imagine cutting the page along every edge. The page falls into pieces, and each piece is a face.
A triangle drawn on a page has two faces: the region inside it and the region outside. A single edge joining two dots has one face, the whole page, because a single line does not enclose anything.
Faces exist only for planar drawings. If edges cross, the regions are not well defined, because a crossing is not a vertex and the pieces do not separate cleanly. So the first step in any face-counting question is to check the drawing has no crossings, and redraw it if it has.
The number of faces turns out not to depend on which crossing-free drawing you use. Different planar drawings of the same graph can look very different and always have the same number of faces, which is one of the things Euler's formula tells you.
The region outside the whole drawing is a face. It is called the outer face or the unbounded face, and it counts.
This is the single most common error in the topic, and it has a recognisable symptom: the formula gives $1$ instead of $2$. If that happens, count again and include the outside.
There is a good reason it feels wrong. The other faces are enclosed and look like regions; the outer one stretches away forever and looks like empty page. But it is bounded by the outer edges of the drawing in exactly the way the inner faces are bounded by theirs.
A helpful way to see it: imagine the drawing on the surface of a ball rather than a flat page. Then no face is special and no face is infinite, and the outside face is simply the one on the far side. Flattening the ball onto paper is what makes one of the faces look different from the others.
For any planar drawing of a connected graph, with $v$ vertices, $e$ edges and $f$ faces:
$v - e + f = 2$
Check it on the diagram above, which has $4$ vertices, $6$ edges and $4$ faces, three inside and one outside:
$4 - 6 + 4 = 2$
Check it on a triangle: $3$ vertices, $3$ edges, and $2$ faces, giving $3 - 3 + 2 = 2$.
Check it on a single edge joining two dots: $2$ vertices, $1$ edge, $1$ face, giving $2 - 1 + 1 = 2$.
Both conditions are needed. The drawing must be planar, or faces are not defined. The graph must be connected, or the answer changes: a graph in two separate pieces gives $3$, and in general a graph in $k$ pieces gives $k + 1$.
Because the three numbers are locked together, any two of them determine the third.
A connected planar graph with $8$ vertices and $13$ edges has
$f = 2 - v + e = 2 - 8 + 13 = 7$
faces, and you can say so without seeing the drawing at all. Rearranged the other ways, $v = 2 + e - f$ and $e = v + f - 2$.
Two habits make these reliable. Rearrange the formula symbolically before substituting, rather than juggling numbers. And sanity-check the answer: the face count of a connected planar graph is at least $1$, and $f = 1$ happens exactly when the graph has no cycles at all.
Check the word connected appears in the question before using the formula. Without it the value on the right-hand side is unknown and nothing can be computed.
Lesson 4 left a gap: how do you prove that no drawing avoids crossings? Euler's formula closes it.
For a simple connected planar graph with at least $3$ vertices, the formula leads to
$e \leq 3v - 6$
The stretch task derives this. Its power is that it mentions no drawing at all, only the two counts, so it applies to every possible drawing at once.
Apply it to the complete graph on five vertices, which has $v = 5$ and $e = 10$:
$3v - 6 = 3(5) - 6 = 9$, and $10 > 9$.
The inequality fails, so no planar drawing of this graph can exist. That is a proof of non-planarity, not a failed search, and it took two lines.
One caution. The inequality is necessary for planarity, not sufficient. A graph satisfying $e \leq 3v - 6$ may still be non-planar, and the three-utilities graph, with $v = 6$ and $e = 9$ against a bound of $12$, is exactly such a case. Passing the test proves nothing; failing it proves non-planarity.
Watch Me Solve It · 3 examples
-
1Count the faces correctly$f = 4 + 1 = 5$The four enclosed regions plus the unbounded outer region. This is the step where the answer is usually lost.
-
2Substitute$v - e + f = 6 - 9 + 5$
-
3Evaluate$6 - 9 + 5 = 2$The formula holds, which also confirms the face count was right. Using $f = 4$ would have given $1$, the classic symptom of forgetting the outside.
-
1Rearrange the formula first$v - e + f = 2$$f = 2 - v + e$Rearranging symbolically before substituting avoids sign errors.
-
2Substitute$f = 2 - 8 + 13 = 7$
-
3InterpretSix enclosed regions and the outer face, giving seven. The answer applies to every planar drawing of the graph, not just to one, which is why the question could be asked without a diagram.
-
1Find v and e$v = 5$$e = \frac{5 \times 4}{2} = 10$Each of the five vertices joins the other four, and dividing by two removes the double count of each edge from both ends.
-
2State the necessary condition$e \leq 3v - 6$This holds for every simple connected planar graph with at least three vertices, and it follows from Euler's formula.
-
3Test it$3v - 6 = 3(5) - 6 = 9$$e = 10 > 9$The condition fails.
-
4ConcludeA planar graph must satisfy the inequality, and this graph does not, so it cannot be planar. No drawing needed to be attempted, and none can succeed.
Brain Trainer · 5 problems
Five items on faces and Euler's formula. All graphs are connected and all drawings are planar.
-
1 A triangle is drawn on a page. How many faces does it have?
Inside and outside.$2$ -
2 A connected planar graph has $10$ vertices and $15$ edges. How many faces?
$f = 2 - v + e$$7$ -
3 A connected planar drawing has $7$ vertices and $5$ faces. How many edges?
$e = v + f - 2$$10$ -
4 A connected planar drawing has $12$ edges and $6$ faces. How many vertices?
$v = 2 + e - f$$8$ -
5 A student computes $v - e + f$ and gets $1$. What have they most likely done?
The outer region is a face.Forgotten the outer face
Multiple Choice · 5 questions
In a planar drawing, the region outside the entire drawing:
A connected planar graph has $9$ vertices and $16$ edges. The number of faces in any planar drawing of it is:
Euler's formula $v - e + f = 2$ requires that the graph is:
A simple connected graph has $7$ vertices and $18$ edges. It is:
The three-utilities graph has $v = 6$ and $e = 9$, and $3v - 6 = 12$, so it satisfies $e \leq 3v - 6$. It follows that the graph is:
Short Answer · 3 questions
Faces include the outside
A face is a region a planar drawing cuts the plane into, and the unbounded region surrounding everything is one of them. Forgetting it gives $1$ instead of $2$.
Euler's formula locks three numbers together
$v - e + f = 2$ for any planar drawing of a connected graph, so any two of the counts determine the third without a diagram.
Both conditions matter
Planar, or faces are undefined; connected, or the answer is $k + 1$ for $k$ pieces rather than $2$.
The bound proves non-planarity
$e \leq 3v - 6$ for simple connected planar graphs. Failing it rules out every drawing at once. Passing it proves nothing, since the condition is necessary but not sufficient.
Your Badges
0 of 6Mark lesson as complete
Tick when you've finished Learn, Practice and the Stretch. Earns +95 XP and +25 coins.