I am trying to find the image and kernel of the orthogonal projection onto the plane x+2y+3z=0. The following is how I solved the problem, but it appears to be incorrect. What is wrong with my solution?
I began by finding the matrix for this transformation, which I believe is\begin{bmatrix}1/196&2/196&3/196\\2/196&4/196&6/196\\3/196&6/196&9/196\end{bmatrix} The rref form of this is \begin{bmatrix}1&2&3\\0&0&0\\0&0&0\end{bmatrix} My undestanding was that the kernel would be the set of inputs that the transform would make into the 0 vector, which I found to be the span of \begin{bmatrix}-2\\1\\0\end{bmatrix} and \begin{bmatrix}-3\\0\\1\end{bmatrix} And the image to be simply the span of the first column in the original matrix, since the first column of the rref form is the only one with a leading 1. So, span of \begin{bmatrix}1/196\\2/196\\3/196\end{bmatrix} Is this reasoning incorrect?