I'm given the following matrix equation: \begin{align} \begin{pmatrix} 2&4\\4&8 \end{pmatrix}X= \begin{pmatrix} 0&0\\0&0 \end{pmatrix} \end{align}
The solution is given as follows - let $X$ be of the form $$X=\begin{pmatrix}a&b\\c&d\end{pmatrix}$$ Then, the matrix equation becomes the following system:
\begin{align} \begin{cases} 2a+4c=0\\ 2b+4d=0\\ 4a+8c=0\\ 4b+8d=0 \end{cases} \end{align}
So, the matrix is of the form $$X=\begin{pmatrix}-2c&-2d\\c&d\end{pmatrix}$$
I don't follow the above explanation, can someone help?