In my exercise, I'm given two independent discrete stochastic variables, with the probability function;
$$ p_{X}\left(x\right)=\left\{ \begin{array}{cc} \frac{1}{4} & \text{if } x = -1 \\ \frac{1}{4} & \text{if } x = 0 \\ \frac{1}{2} & \text{if } x = 1 \\ 0 & \text{otherwise} \end{array} \right. $$
I'm given the task to find several properties, for instance the mean ($EX = \frac{1}{4}$), and variance ($VarX=\frac{11}{16}$). I was able to do this with any issues.
Now I'm given the task of calculating, the variance; $Var(X-5Y)$, based upon the fact that independent variables have a covariance of 0, I've found this to be; $Var(X-5Y)=\frac{143}{8}$.
However when I'm trying to confirm that the covariance is 0, I get in trouble; $$ Cov(X,Y) = E(XY) - EX \cdot EY $$ With; $$E(XY) = \left(\frac{1}{4} \cdot -1 \cdot -1 \right) + \left(\frac{1}{4} \cdot 0 \cdot 0 \right) + \left(\frac{1}{2} \cdot 1 \cdot 1 \right) = \frac{3}{4}$$ I'm getting; $$ Cov(X,Y) = \frac{3}{4} - \frac{1}{4} \cdot \frac{1}{4} = \frac{11}{16} $$ Clearly I'm doing something wrong, but what?