Skip to main content

Section 2.3 Euler Formula

Problem 2.3.1.

For each of the regular polyhedra count the number of vertices (points), edges (line segments), and faces (2D shapes). 3D models are in FigureĀ 2.3.3 to FigureĀ 2.3.7. You may also use the ZomeTool models in the instructor's office.

Solution.
  • Tetrahedron

    • 4 Vertices

    • 6 Edges

    • 4 Faces (Triangles)

  • Cube

    • 8 Vertices

    • 6 Edges

    • 4 Faces (Triangles)

  • Octahedron

    • 6 Vertices

    • 12 Edges

    • 8 Faces (Triangles)

  • Dodecahedron

    • 20 Vertices

    • 30 Edges

    • 12 Faces (Pentagons)

  • Icosahedron

    • 12 Vertices

    • 30 Edges

    • 20 Faces (Triangles)

Problem 2.3.2.

For each of the regular polyhedra draw a graph whose vertices are the vertices of the polyhedra and whose edges are the edges of the polyhedra. Try to draw each graph with no edges crossing.

Solution.

It is possible to draw all these shapes as a graph with no edges crossing.

Tetrahedron

Cube

Octahedron

Dodecahedron

Icosahedron

Drag to change viewpoint.

Figure 2.3.3. Tetrahedron

Drag to change viewpoint.

Figure 2.3.4. Cube

Drag to change viewpoint.

Figure 2.3.5. Octahedron

Drag to change viewpoint.

Figure 2.3.6. Dodecahedron

Drag to change viewpoint.

Figure 2.3.7. Icosahedron

Definition 2.3.8.

A figure 8 graph, denoted \(F8_{m,n}\text{,}\) consists of two cycles \(C_m\) and \(C_n\) that share exactly one vertex.

Example 2.3.9. Figure 8 Graph Examples.

\(F8_{4,3}\)

\(F8_{5,3}\)

Definition 2.3.10.

A graph is triangular if and only if every cycle of size at least four has an additional edge.

Example 2.3.11. Triangular Graphs.

Proof.

Let\(G\)be a connected graph on\(n\)vertices. We prove each case in turn.

Suppose \(G\) is a tree. Then it has no faces. So \(V - E + F = n - (n-1) + 0 = 1\)

Suppose \(G\) is a cycle. Then it has one face. Thus \(V - E + F = n - n + 1 = 1\)

Suppose \(G\) is a figure eight. Then \(G\) has two faces. Hence \(V - E + F = n - (n+1) + 2 = 1\)

The last case is more complicated. Suppose \(G\) is triangular and \(n\geq 4\) (Smaller \(n\) reduce to other cases.) Then every face of \(G\) is a 3-cycle. Such a graph can be constructed by successively adding triangular faces to a single 3-cycle. When adding a face, the new face shares either 0, 1, or 2 edges with an existing face. In each of these cases \(V-E+F\) is unchanged. Since we began with a 3-cycle, \(V-E+F=1\)

Suppose that we add a new face that shares no edges with an existing face. Then we must add three edges and two vertices. So the new sum is \((V+2) - (E+3) + (F+1) = V-E+F\text{,}\) so the sum is unchanged.

Suppose instead that we add a new face that shares exactly one edge with an existing face. Then we must add one new vertex and two new edges. The new sum is \((V+1)-(E+2)+(F+1) = V-E+F\text{,}\) so again the sum is unchanged.

Finally, suppose that we add a face that shares two edges with existing faces. Then we add no new vertices and one new edge. So the sum is \(V - (E+1) + (F+1) = V - E + F,\) so the new graph has the same sum as the old graph.

It is possible that the original graph had some number of arbitrary trees which cannot be recreated in this manner. However, by the tree case of this theorem, we can add any number of arbitrary trees to our graph without changing \(V-E+F\text{.}\)

This shows inductively that for any triangular graph\(V-E+F=1\)