

InterviewSolution
Saved Bookmarks
1. |
A polyhedron has 8 faces and 18 edges, find the number of vertices |
Answer» <p>Euler's Theorem for polyhedra: F + V - 2 = E</p><p>where</p><p>F = # of facesV = # of verticesE = # of edges</p><p>==> V = E + 2 - F = 18 + 2 - 8 = 12 vertices</p> | |