If $B$ is a square symmetric matrix of order $n\times n$ then is true that $$ \det{\Big(A^T\cdot B\cdot A\Big)}=\det\Big(A^T\cdot A\Big)\det B $$ where $A$ is a matrix of order $n\times m$? Unfortunately I did not find a counterexample: in particular I tried to show that $$ A^T\cdot B\cdot A=A\cdot A^T\cdot B $$ so that the statement follows directely applying the Binet formula. So could someone help me, please?
Asked
Active
Viewed 123 times
1 Answers
9
It's not true. Take $A = \begin{pmatrix} 1 \\ 1 \end{pmatrix}$ and $B = \begin{pmatrix} 2 & 0 \\ 0 & 1\end{pmatrix}$. Then $$\det(A^\top B A) = \det(3) = 3,$$ but $$\det(A^\top A) \cdot \det(B) = \det(2) \cdot \det\begin{pmatrix} 2 & 0 \\ 0 & 1\end{pmatrix} = 4.$$

Theo Bendit
- 50,900
For example, suppose $B$ has signature $(n-1,1)$ and $A$ is $n \times n-1$, with rows consisting of 3 orhornomal eigenvectors of $A$ associated with its positive eigenvalues. Then $ \det{\Big(A^T\cdot B\cdot A\Big)}\gt 0$ and $\det\Big(A^T\cdot A\Big)\cdot \det B = 1 \cdot \det B\lt 0$
– user8675309 Jun 28 '21 at 17:35