$x = \begin{bmatrix}5\\ 3\\ 9 \end{bmatrix}$
$y = \begin{bmatrix}2\\ 0\\ 1 \end{bmatrix}$
x and y are column matrices.
I have tried to solve then using inversion and direct multiplication, but I got indeterminant form like 0/0.
$x = \begin{bmatrix}5\\ 3\\ 9 \end{bmatrix}$
$y = \begin{bmatrix}2\\ 0\\ 1 \end{bmatrix}$
x and y are column matrices.
I have tried to solve then using inversion and direct multiplication, but I got indeterminant form like 0/0.
Because $A$ has rank 1, it must be of the form $A = v w^T$ for some vectors $v$ and $w$. Since $y = Ax = vw^T x = (w^T x) \cdot v$, $v$ must be a multiple of $y$. If we take $v = y$, then this forces $w^T x = 1$, and we can take $w = \frac{1}{x^T x} x$ so that this is satisfied. In summary, $A = \frac{1}{x^Tx} y x^T$ does the trick.