Another way - perhaps more intuitive - to look at this problem, is as follows. Suppose we can describe the stochastic variables $x$ and $y$ as follows:
\begin{equation}
\begin{bmatrix} y \\ x \end{bmatrix} =
\begin{bmatrix} \mu_y \\ \mu_x \end{bmatrix} +
\begin{bmatrix} p_{yy} & 0 \\ p_{xy} & p_{xx} \end{bmatrix}
\begin{bmatrix} \epsilon_y \\ \epsilon_x \end{bmatrix},
\end{equation}
where $\epsilon_y$ and $\epsilon_x$ are stochastic variables that come from a normal distribution with mean $0$ and variance $1$, i.e. $\epsilon_y, \epsilon_x \sim \mathcal{N}(0,1)$. When computing the expectation of the above formula, it is easy to see that $\mu_y=2$ and $\mu_x=4$. Furthermore, when computing the covariance, we see that
\begin{equation}
\begin{bmatrix} p_{yy} & 0 \\ p_{xy} & p_{xx} \end{bmatrix}
\begin{bmatrix} p_{yy} & p_{xy} \\ 0 & p_{xx} \end{bmatrix} =
\begin{bmatrix} p_{yy}^2 & p_{yy}p_{xy} \\ p_{yy}p_{xy} & p_{xy}^2 + p_{xx}^2 \end{bmatrix} =
\begin{bmatrix} 10 & 2 \\ 2 & 20 \end{bmatrix} \tag{1}
\end{equation}
Now we can rewrite $x$, by using the fact that $\epsilon_y = \frac{y - \mu_y}{p_{yy}}$:
\begin{align}
x &= \mu_x + p_{xy}\epsilon_y + p_{xx}\epsilon_x \\
&=\mu_x + \frac{p_{xy}}{p_{yy}} (y - \mu_y) + p_{xx} \epsilon_2
\end{align}
Now, given that $y$ is known, it is easy to see that the expected value of $x$ (you call is $\hat{x}_{MS}$) is
\begin{equation}
E[x] = \mu_x + \frac{p_{xy}}{p_{yy}}(y-\mu_y) \tag{2}
\end{equation} and the covariance of the $x$ (you call is $P_{\hat{x}_{MS}}$) is simply $p_{xx}^2$. From Eq. $(1)$, it follows that
\begin{equation}
p_{yy}p_{xy}=2,
\end{equation}
so
\begin{equation}
\frac{p_{xy}}{p_{yy}}=\frac{2}{p_{yy}^2}=\frac{2}{10}=\frac{1}{5}.
\end{equation}
Filling this in Eq. $(2)$ gives
$$
\hat{x}_{MS} = 4 + \frac{1}{5}(1-2)=4-\frac{1}{5}=\frac{19}{5}.
$$
Furthermore, we have
$$
P_{\hat{x}_{MS}} = p_{xx}^2 = 20 - p_{xy}^2 =
20 - p_{yy}^2 \left(\frac{p_{xy}}{p_{yy}}\right)^2=20-\frac{10}{25}=\frac{98}{5},
$$
which corresponds to the other answer I gave :).