I am trying to solve the following exercise:
Let $M=\begin{bmatrix} -\frac{1}{2} & -\frac{1}{2} & \frac{\sqrt{2}}{2}\\ \frac{1}{2} & \frac{1}{2} & \frac{\sqrt{2}}{2}\\ \frac{\sqrt{2}}{2} & -\frac{\sqrt{2}}{2} & 0 \end{bmatrix}$.
(a) Show that it is orthogonal.
(b) Classify it: does it represent a rotation or a reflection?
(c) If it represents a rotation, find the axis of rotation and the angle; if it represents a reflection, find the plane of reflection and, if present, the rotation around the normal to the plane".
What I have done:
(a) $M^TM=I$ so the matrix is orthogonal.
(b) $\det(M)=-1$ so the matrix represents a reflection.
EDIT:
c) If $\vec{v_{\perp}}$ is a vector perpendicular to the plane of reflection the relation $M\vec{v_{\perp}}=-\vec{v_{\perp}}$ must hold i.e. $\vec{v_{\perp}}$ is the eigenvector corresponding to the eigenvalue $\lambda =-1$. So we have $M-(-1)I=M+I=\begin{bmatrix} \frac{1}{2} & -\frac{1}{2} & \frac{\sqrt{2}}{2}\\ \frac{1}{2} & \frac{3}{2} & \frac{\sqrt{2}}{2}\\ \frac{\sqrt{2}}{2} & -\frac{\sqrt{2}}{2} & 1 \end{bmatrix}\vec{v_{\perp}}=\begin{bmatrix}0\\ 0\\ 0 \end{bmatrix}\Rightarrow\vec{v_{\perp}}=\begin{bmatrix}\sqrt{2}\\ 0\\ -1\end{bmatrix}$ thus M reflects with respect to the plane $\sqrt{2}x-z=0$. We can build the rotation matrix around the normal $\vec{v_{\perp}}$ by finding two vectors perpendicular to it, which is easy to see are $\vec{v_2}=\begin{bmatrix}0\\ 1\\ 0\end{bmatrix}$ and $\vec{v_3}=\begin{bmatrix}1\\ 0\\ \sqrt{2}\end{bmatrix}$ thus $C=\begin{bmatrix} 0 & 1/\sqrt{3} & \sqrt{2/3}\\ 1 & 0 & 0 \\ 0 & \sqrt{2/3} & -1/\sqrt{3} \end{bmatrix}$ is the rotation matrix and $C^{-1} MC=\begin{bmatrix} 1/2 & \sqrt{3}/2 & 0\\ -\sqrt{3}/2 & 1/2 & 0 \\ 0 & 0 & -1\end{bmatrix}$ which represents (in the new coordinate system with the z-axis coinciding with $\vec{v_{\perp}}$) a reflection with respect to the new $x,y$ plane and a rotation around the $z$ axis with an angle of rotation of $5\pi/6$ (since $\cos(\theta)=1/2$ and $\sin(\theta)=-\sqrt{3}/2$).
So, I would be very grateful if someone could check what I have done and give me some feedback.
Thank you very much for your time and help.