Definition (Planar Embedding)
A Planar Embedding of a Graph is a drawing in the plane without crossing any edges. For example,
graph subgraph R^2; a((a)) b((b)) c((c)) d((d)) end a o--o b; c o--o b; d o--o a; c o--o a; c o--o d;
has a planar embedding. A graph is planar if it has a planar embedding.
Definition (Planar Faces)
Given a planar embedding of some graph , this was split the plane into faces, the connected regions of the .
For example, in the graph above, we have region , and the ambient space.
Example Planar Graphs
We have the following table:
Euler’s Formula
If is a finite, connected planar graph, then any planar embedding has
where is the set of faces formed by .
Proof: We prove by induction on .
Base Case: . By Lemma (Tree Edge Count), this is a tree. We are done
Assume that any graph with fewer edges and the same number of vertices satisfies Euler’s Formula. If , then is not connected, a contradiction. If then is not a tree and has a cycle and some edge .
Consider
Then
- because when remove , we “open up” the cycle and merge two faces together. By the induction hypothesis,
and we are done.
Theorem (Planar Graph Edge Bound)
If is a connected Planar Graph with , then
Proof: By Euler’s Formula, and lemma , we have
Rearranging, we get .
Equality is achieved iff all faces are triangles.
Theorem ( is Non-Planar)
The Complete Graph is non-planar.
Proof: If it was, then by Theorem (Planar Graph Edge Bound),
a contradiction.
Theorem ( is Non-Planar)
The complete bipartite graph is non-planar.
Proof: Since it is bipartite, it has no odd cycles by Theorem (Bipartite Cycles). Therefore if it was planar, then any face has at least sides. Thus, by Theorem (Planar Graph Edge Bound),
a contradiction.
Theorem (Planar Graphs have Bounded Minimum)
If is a finite, connected planar graph, then has minimum Degree .
Proof: Otherwise, . Then by Handshake Lemma,
such that . But then
by Theorem (Planar Graph Edge Bound) which is a contradiction.
Lemma (Triangulations)
For nay planar embedding of a graph there is a way to add more edges to to get a new planar graph in which all faces are triangles.