4

If the cofactor matrix of A is $$\begin{bmatrix}1 & 2 & 3 \\ 0 & -2 & 4 \\ 0 & 0 & -2\end{bmatrix}$$

How can I find the determinant of $A$?

3 Answers3

4

HINT: Let $C$ be the cofactor matrix, then $$C^TA = \det(A)I$$ Take the determinant of both sides of this to get $$\det(C^TA) = \det(\det(A)I) \\ \det(C^T)\det(A) = \det(A)^3\det(I) = \det(A)^3$$

1

You can use the fact that $BA=||A||I$ where $B$ is the adjoint of $A$.

Ash
  • 669
  • IMO, it's better to call it the adjugate of $A$ and reserve the word adjoint for the (conjugate) transpose. –  Oct 03 '15 at 15:15
1

Actually there are two solutions:

$$A_1=\begin{bmatrix}-2 & 0 & 0 \\ -2 & 1 & 0 \\ -7 & 2 & 1\end{bmatrix}$$ $$A_2=\begin{bmatrix}2 & 0 & 0 \\ 2 & -1 & 0 \\ 7 & -2 & -1\end{bmatrix}$$

You can find these by computing $B={C^{T}}^{-1}$ and solving $A=kB$ and $k=\det(A)$.

$\det(A_1)=-2$ and $\det(A_2)=2$.

Alex
  • 2,354