One way (there may be other):
Where did you get this problem if you don't know how to do matrix multiplication. One way to do a matrix multiplication is to think of the "ith" row of the first matrix and the "jth" column of the second matrix as vectors. Then the "ith row, jth column" of the product is the dot product of those two vectors. Here the matrix on the left has only one row, \(\displaystyle \begin{bmatrix}k & 1 & 1 \end{bmatrix}\). The first column of the next matrix is \(\displaystyle \begin{bmatrix}1 \\ 1 \\ 0 \end{bmatrix}\). The dot product of those vectors is k(1)+ 1(1)+ 1(0)= k+ 1. Similarly the second column is \(\displaystyle \begin{bmatrix}1 \\ 0 \\ 2 \end{bmatrix}\) and the dot product of that with \(\displaystyle \begin{bmatrix}k & 1 & 1 \end{bmatrix}\) is k(1)+ 1(0)+ 1(2)= k+ 2. Finally the third column is \(\displaystyle \begin{bmatrix}0 \\ 2 \\ -3 \end{bmatrix}\) and the dot product of that with \(\displaystyle \begin{bmatrix}k & 1 & 1 \end{bmatrix}\) is k(0)+ 1(2)+ 1(-3)= -1.
You mean k^2 + 2k + 1 = 0.… the problem is reduced to … \( k^2 + 3k + 1 = 0\) …
Yes. thank you.You mean k^2 + 2k + 1 = 0.
![]()