I have two 1D matrices (say dimension 1xn) called A and B. Multiplying these: A . B = M. Where M is a scalar. Knowing B and M, can I find A?
One cannot take the inverse of a vector, but is it possible to use eigenvalues? as the form for eigenvalues is u=(lambda)v, where u and v are vectors!
Lookinf forward to any helpful answer!
Kind regards, M
You would not be able to uniquely identify $A$. We can see this already by considering two and three dimensions.
$$A\cdot B = \|A\| \|B\| \cos(\theta)$$ where $\theta$ is the angle measured between $A$ and $B$. Note that in two dimensions, if the angle is swapped with $-\theta$ then we have the same result. In three dimensions there are more degrees of freedom.
For example, suppose $A=(1,0)$ and $B=(0,1)$. $A\cdot B =0$ but this is also true for $A'=(-1,0)$ or $A'=(20000,0)$. The dot product can reduce the number of allowable solutions, but unless it is a simple one dimensional system, you cannot determine $A$ from it.