I recently came across this problem, although trivial to compute by hand - is a little challenging for me to interpret. Notably, we have three matrices:
$$\vec{c}= \begin{bmatrix} 0.5 \\ 0.5 \end{bmatrix},\hspace{0.2in} \vec{x}= \begin{bmatrix} 2 \\ 3 \end{bmatrix},\hspace{0.2in} \vec{\mu}= \begin{bmatrix} 1 \\ 2 \end{bmatrix}, \hspace{0.2in} \mathbf{\Sigma} = \begin{bmatrix} 2 & 1 \\ 1 & 4 \end{bmatrix} $$
We then have the following calculation, which I have solved below.
$\vec{c}^{\,T}(\vec{x}-\vec{\mu}) (\vec{c}^{\ T}\mathbf{\Sigma}\vec{c})^{-1}$ ${}=\begin{bmatrix} \ 0.5 \end{bmatrix}$
The calculation is trivial. However, how do I interpret this solution - assuming $\vec{x}$ is a data vector, $\vec{\mu}$ is a mean vector, and $\mathbf{\Sigma}$ is a covariance matrix?