A Matrices Problem – Cayley-Hamilton or Bash

determinantlinear algebramatrices

Here's a cool problem I came across sometime back, and I haven't been able to solve it yet (let's hope that people at Math SE come up with interesting solutions for it!)

$A$ is a square matrix of order 2, with $|A| ≠ 0$ such that $|A + |A|adj(A)| = 0$, where $|A|$ and $adj(A)$ denote the determinant and adjoint/adjugate of matrix A, respectively. Find $|A – |A|adj(A)| = ?$

Is there any way to avoid a bash, by assuming elements of the matrix and then trying to compute the desired determinant? Would it be possible to proceed using Cayley Hamilton theorem?

Also, I think this result could possibly be generalised to a nxn square matrix. So, please help me find the value of the desired determinant, and also let's collectively investigate this problem for square matrices of higher order – could probably be an interesting generalisation, who knows?

Update: I just solved the problem for a 2×2 square matrix – the required determinant is 4, and the determinant of matrix A is 1. Now, the question that remains is, how do I solve it for an nxn square matrix?

Best Answer

You are reading too much into the question. The result does not generalise well to higher dimensions. Let us consider the $2\times2$ case first. Presumably $A$ is real. Let $d=|\det(A)|$, the absolute value of $\det(A)$. The given condition can be rewritten as $\det(A + d^2A^{-1}) = 0$, which implies that $\det(A^2 + d^2 I) = 0$. This simply means that $-d^2$ is a negative eigenvalue of $A^2$.

Since $\det(A^2)=d^2$, when $A$ is $2\times2$, the other eigenvalue of $A^2$ has to be $-1$. Thus $A^2$ has two negative real eigenvalues $-d^2$ and $-1$. Therefore $A$ must have a conjugate pair of eigenvalues. Hence $d=1$ and also $\det(A)=|\det(A)|$. It follows that the characteristic polynomial of $A^2$ is $p(x) = (x+d^2)(x+1) = (x+1)^2$ and $$ \det\left(A - \det(A)\operatorname{adj}(A)\right) =\det(A^{-1})\det(A^2 - d^2I) =\frac1d p(d^2) = 4. $$ This concludes the $2\times2$ case. When $A$ is at least $3\times3$, only what we've said in the first paragraph remains valid. The condition $\det\left(A + \det(A)\operatorname{adj}(A)\right)$ is true if and only if $-d^2$ is an eigenvalue of $A^2$, meaning that $A$ is similar to $$ \left(\begin{array}{c|c}\pmatrix{0&-d\\ d&0}&\ast\\ \hline0&P^{-1}\end{array}\right) $$ for some real matrix $P$ with determinant $\pm d$ (unlike the $2\times2$ case, $\det(A)$ is not necessarily equal to $|\det(A)|$ here and its sign is controlled by $P$). Therefore \begin{align} \det\left(A - \det(A)\operatorname{adj}(A)\right) &=\det(A-d^2A^{-1})\\ &=4d^2\det\left(P^{-1} - d^2P\right)\\ &=4\det(P)\det\left(I - d^2P^2\right), \end{align} whose value can assume any positive, zero or negative real value. The answer by loup blanc is obtained by using a block-diagonal matrix $A$ with $d=P=\frac1z$.

Related Question