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