I'm referring to the article on dodecahedrons from Wikipedia - https://en.wikipedia.org/wiki/Regular_dodecahedron
It says that the vertices are given by -
$$(\pm 1, \pm 1, \pm 1)$$ $$(0, \pm \phi, \pm \frac{1}{\phi})$$ $$(\pm \frac{1}{\phi}, 0, \pm \phi)$$ $$(\pm \phi, \pm \frac{1}{\phi}, 0)$$
I plotted these and it definitely checks out (looks like a legit dodecahedron). Now, it also says the equations of the faces are given by -
$$\phi x \pm y = \pm \phi^2$$ $$\phi y \pm z = \pm \phi^2$$ $$\phi z \pm x = \pm \phi^2$$
Now, this does not seem to check out. Each face should be satisfied by five vertices. Take the very first face - $\phi x + y = \phi^2$. This is satisfied by $(1,1,1)$ and that seems to be it.
Is there an error in the face equations? And more generally, is there a way to find these equations given the vertices? What about for an Icosahedron?
For a regular dodecahedron, it's simple to get the equation for one of the facial planes. If we wrote $\vec{r_v}=\vec{r_p}+\vec{r_n}$ for vector to a vertex of one of the facial planes where $\vec{r_p}$ is parallel to the plane and $\vec{r_n}$ is normal to the plane and $C_5$ is a rotation about the symmetry axis of the face, $$\sum_{i=0}^4C_5^i\vec{r_p}=\vec0$$ and $$\sum_{i=0}^4C_5^i\vec{r_n}=5\vec{r_n}$$ because the symmetry axis is parallel to $\vec{r_n}$ and normal to $\vec{r_p}$. Thus all you have to do is to sum the coordinates of the facial vertices and you have a vector normal to the face. Over the top face that tilts towards $y$, this is $$\langle-\frac1{\phi},0,\phi\rangle+\langle\frac1{\phi},0,\phi\rangle+\langle1,1,1\rangle+\langle-1,1,1\rangle+\langle0,\phi,\frac1{\phi}\rangle=\sqrt5\phi\langle0,1,\phi\rangle$$ Now we just need one of the vertices to apply $\vec r\cdot\vec n=\vec{r_0}.\vec n$ $$\langle1,1,1\rangle\cdot\langle0,1,\phi\rangle=\phi^2$$ so we get $$y+\phi z=\phi^2$$ Gotta run. EDIT: Here is a program that does all that for you
And its output: $$\begin{array}{c|ccc} \text{Vertex} & x & y & z \\ \hline 1 & 1/\phi & 0 & \phi \\ 2 & \phi & 1/\phi & 0 \\ 3 & 0 & \phi & 1/\phi \\ 4 & -1/\phi & 0 & -\phi \\ 5 & -\phi & 1/\phi & 0 \\ 6 & 0 & \phi & -1/\phi \\ 7 & 1/\phi & 0 & -\phi \\ 8 & \phi & -1/\phi & 0 \\ 9 & 0 & -\phi & -1/\phi \\ 10 & -1/\phi & 0 & \phi \\ 11 & -\phi & -1/\phi & 0 \\ 12 & 0 & -\phi & 1/\phi \\ 13 & 1 & 1 & 1 \\ 14 & 1 & 1 & -1 \\ 15 & -1 & 1 & -1 \\ 16 & -1 & 1 & 1 \\ 17 & 1 & -1 & -1 \\ 18 & 1 & -1 & 1 \\ 19 & -1 & -1 & 1 \\ 20 & -1 & -1 & -1 \\ \end{array}$$ $$\begin{array}{c|ccccc|c} \text{Face} & V_1 & V_2 & V_3 & V_4 & V_5 & \text{Equation}\\ \hline 1 & 1 & 10 & 16 & 3 & 13 & y+\phi z = \phi^2 \\ 2 & 1 & 10 & 19 & 12 & 18 & - y+\phi z = \phi^2 \\ 3 & 1 & 13 & 2 & 8 & 18 & \phi x+ z = \phi^2 \\ 4 & 2 & 8 & 17 & 7 & 14 & \phi x- z = \phi^2 \\ 5 & 2 & 13 & 3 & 6 & 14 & x+\phi y = \phi^2 \\ 6 & 3 & 6 & 15 & 5 & 16 & - x+\phi y = \phi^2 \\ 7 & 4 & 7 & 14 & 6 & 15 & y-\phi z = \phi^2 \\ 8 & 4 & 7 & 17 & 9 & 20 & - y-\phi z = \phi^2 \\ 9 & 4 & 15 & 5 & 11 & 20 & -\phi x- z = \phi^2 \\ 10 & 5 & 11 & 19 & 10 & 16 & -\phi x+ z = \phi^2 \\ 11 & 8 & 17 & 9 & 12 & 18 & x-\phi y = \phi^2 \\ 12 & 9 & 12 & 19 & 11 & 20 & - x-\phi y = \phi^2 \\ \end{array}$$