I have information about total force and moment on a body for three points, whose coordinates I know. From this information I would like to determine the point at which moment would be zero.
Generally,
$\vec{M} = \vec{r} \times \vec{F}$
...which can be written as ...
$\vec{M} = \begin{bmatrix} \vec{i}&\vec{j}&\vec{k} \\ r_x&r_y&r_z \\ F_x&F_y&F_z \end{bmatrix} $
...or expanded out ...
$\vec{M} = (r_yF_z-r_zF_y)\vec{i} + (r_zF_x-r_xF_z)\vec{j} + (r_xF_y-r_yF_x)\vec{k}$
Taking a cross product of the two vectors is trivial and even I'm capable of grasping this, but what I would really like to do is backsolve for a point at which $\vec{M}=[0,0,0]$. Is this possible?
Here's what I'm seeing...
$M_x = r_yF_z-r_zF_y = 0\\ M_y = r_zF_x-r_xF_z = 0\\ M_z = r_xF_y-r_yF_x = 0$
...so in my head I'm thinking that if the forces are known and we want the moment to equal zero, this system of equations can be set up and solved for the vector:
$\begin{bmatrix}M_x\\M_y\\M_z\end{bmatrix} = \begin{bmatrix}r_x\\r_y\\r_z\end{bmatrix} \cdot \begin{bmatrix}0&F_z&-F_y\\-F_z&0&F_x\\F_y&-F_x&0\end{bmatrix} = \begin{bmatrix}0\\0\\0\end{bmatrix}$
...but obviously this is a singular matrix and there is not a distinct solution.
What am I missing here?