we've got the following 4x4 Matrix
$$\begin{pmatrix} 4 & -2 & 3 & 2\\ 3 & 5 & 1 & -4\\ -1 & 6 & -4 & -7\\ -2 & 0 & -2 & 4 \end{pmatrix}$$
and I need to find $B$ from the equation: $(A-3I)B=0$.
i started to solve it by finding first $A-3I$. and I got:
$$\begin{pmatrix} 1 & -2 & 3 & 2\\ 3 & 2 & 1 & -4\\ -1 & 6 & -7 & -7\\ -2 & 0 & -2 & 1 \end{pmatrix}$$
now I know that every column $[AB]^j$ [$j$ represents column number] can be calculated by $A[B]^j$ [$j$ represents column number].
and I was trying to solve it by multiplying $A$ with a specific column in $B$ but I wasn't able to reach the zero matrix.
EDIT: almost forgot to mention that B needs to be 4x4 matrix and different form 0!
by row reducing $A-3I,$ using my ti-83, i get $$\pmatrix{1&-2&3&2\\3&2&1&-4\\-1&6&-7&-7\\-2&0&-2&1}\to\pmatrix{1&0&1&-0.5\\0&1&-1&-1.25\\0&0&0&0\\0&0&0&0} $$ we can see that two linearly independent vectors $a, b$ such that $(A-3I)a = 0, (A-3I)b = 0$ where $$a=\pmatrix{0.5\\1.25\\0\\1}, b = \pmatrix{-1\\1\\1\\0}.$$ you can make a matrix $B$ made up of columns $a, b, a, b.$ in fact each column can be any linear combination of $a, b$ would do as well.