I am given a tetrahedron with the following points:
$$\begin{align} P_1 &= (2,0,1)\\ P_2 &= (-1,1,1)\\ P_3 &= (1,0,2)\\ P_4 &= (3,1,4) \end{align}$$
and I am tasked with finding its center of mass, M.
My attempt: $$\vec{OM} = \frac{1}{3}(\vec{OP_1} + \vec{OP_2} + \vec{OP_3})$$
$\vec{OM_1}$ is the coordinate for the center of mass of the base and $\vec{OM_2}$ is the coordinate of the center of mass of the tetrahedron. To find the center of mass of the tetrahedron, I do the following:
$$\begin{align} \vec{OM_2} &= \frac{\vec{OM} - \vec{OP_4}}{2} \\ \vec{OM_2} &= \frac{\frac{1}{3}(2,1,4) - (3,1,4)}{2} \\ \vec{OM_2} &= (-\frac{1}{3}, -\frac{1}{6}, -\frac{8}{6}) \end{align}$$
This is wrong since the answer is: $$(\frac{5}{4}, \frac{1}{2}, 2)$$
What have I done wrong? I'd really appreciate tips / explanations exactly where I am wrong.