Create a symmetric positive definite matrix (but not diagonal) with eigenvalues $1, 2, 4$ - how to approach this problem?

173 Views Asked by At

Trace of the matrix is obviously $7$ and determinant $8$, a $3\times3$ matrix should be easiest to construct, but where to go from here? Any brute force method simply won't work.

3

There are 3 best solutions below

4
On BEST ANSWER

Hint: Choose an appropriate orthogonal matrix $M$ and take$$M^T.\begin{bmatrix}1&0&0\\0&2&0\\0&0&4\end{bmatrix}.M.$$

2
On

Why not pick any orthogonal transformation matrix $P$ and easily construct its inverse $P^T = P^{-1}$, with your matrix being $A = PDP^T$, where $D$ is the diagonal matrix of eigenvalues?

0
On

You can try with this block-diagonal matrix:

$$\begin{bmatrix} \frac32 & -\frac12 & 0 \\ -\frac12 & \frac32 & 0 \\ 0 & 0 & 4\end{bmatrix}$$