To find the new coordinates of a triangle that has been rotated 90° clockwise about the origin, you multiply the vertex matrix by the rotation matrix $\begin{bmatrix} 0 & 1 \ -1 & 0 \end{bmatrix}$. If the coordinates of $\triangle ABC$ are A(5, 7), B(-4, 3), and C(-6, 8), use this information to determine the new coordinates for $\triangle A'B'C'$ after it has been rotated 90° clockwise about the origin.
A'(-7, 5), B'(3, 4), C'(8, 6)
A'(-7, 5), B'(-3, -4), C'(8, 6)
A'(-7, 5), B'(-3, -4), C'(-8, -6)
A'(7, -5), B'(3, 4), C'(8, 6)