I have been working on the following problem:
Given you have $\text{Var}(X) = 1$, $\text{Var}(Y) = 4$, and $\text{Var}(Z) = 25$, what is the minimum possible variance for the random variable $W = X + Y + Z$, or $\text{min}\{ \text{Var}(X+Y+Z)\}$?
My first thought is to complete the variance-covariance expansion as follows: $\text{Var}(X + Y + Z) = \text{Var}X + \text{Var}Y + \text{Var}Z +2[\text{Cov}(X,Y) + \text{Cov}(Y,Z) + \text{Cov}(X,Z)]$
Then to use the Cauchy-Schwarz inequality to determine the minimum covariance for each of the covariance terms (i.e. $|\text{Cov}(X,Y)| \le \sqrt{\text{Var}(X)\text{Var}(Y)}$ ). However, I am obtaining a negative potential minimum, which leads me to think that the lower bound could be zero?
$\text{Var}(X+Y+Z) = 1 + 4 + 25 + 2[-2 - 5 - 10] = 30 - 34$ ???
The other thought is that using Cauchy-Schwarz in this way is not correct and my approach is wrong.
My next thought is to consider the expansion as $\text{Var}[(X+Y), Z]$, but was not sure how to proceed by considering the sum of 2 variables $(X+Y)$ and $Z$. Perhaps use the fact that $\text{Cov}(X+Y,Z) = \text{Cov}(X,Y) + \text{Cov}(X,Z)$?
Any thoughts on how to proceed are appreciated.