My Linear algebra is a bit rusty, I want to transform this vector:
$\begin{bmatrix}a \\ b \\ c \end{bmatrix}$
To this matrix:
$\begin{bmatrix} a & b & 0 \\ 0 & a & b \\ 0 & b & c \end{bmatrix}$
How do I do it with matrix multiplications (can have multiple steps)? I've tried to create a diagonal matrix from the vector but had no success onward, can someone show me the light? Thanks.
The desired matrix has determinant $a(ac-b^2)$, so it is, in general, a regular matrix. It can't be obtained multipliyng matrices if one of them has rank $1$.