The given matrix is
$$A =\begin{pmatrix} 2 & 4 & 3 \\ -4 & -6 & -3 \\ 3 & 3 & 1\end{pmatrix}.$$ Any alternative idea than computing $|A-xI|$? $$A - xI = \begin{pmatrix} 2-x &4 & 3 \\ -4 & -6-x & -3 \\ 3 & 3& 1-x \end{pmatrix}$$ How to find characterstics equation ??
In artificial exercises such as this one, you can sometimes save yourself having to grind through the generic method by checking some simple linear combinations of rows and columns. In this case, the sum of the first two rows is $(-2,-2,0)$, so one eigenvalue is $-2$, and the sum of all of the rows is $(1,1,1)$, so another eigenvalue is $1$. The eigenvalues of a matrix and its transpose are identical, so you now have two of the eigenvalues of $A$. You can always get the last one “for free” from the trace, which is the sum of the eigenvalues. Here, we get $(2-6+1)-1-(-2)=-2$ for the third eigenvalue. The characteristic polynomial is therefore $(\lambda+2)^2(\lambda-1)$.
You might also notice that if you subtract the second column from the first, you get $(-2,2,0)^T$, and then add the last column to this to get $(1,-1,1)^T$, which gives you the same two eigenvalues as above, but I found it a bit easier to spot the interesting row sums for this matrix.
Incidentally, the characteristic polynomial is usually defined as being monic (not that this affects its roots), so you should probably be computing $\det(\lambda I-A)$ instead, which is guaranteed to produce a monic polynomial for both odd- and even-order matrices. $\det(A-\lambda I)$ is monic only for even orders. On the other hand, subtracting $A$has more potential for making a sign error, so watch out for that.