I have a question that I've been struggling over. Let $(X,Y)$ have a bivariate normal distribution with $E(X)=E(Y)=10$ and $Var(X)=Var(Y)=16$ and $Corr(X,Y)=1/2.$ The question (and solution) is as follows:
I understand why $P(\min(X^*,Y^*)>0 = P(X^* > 0,\, Y^*>0).$ This is because if the minimum value is greater than $0,$ then both $X$ and $Y$ will be greater than $0.$ However I don't understand the steps after this on proving the lower/upper bounds. Any help would be greatly appreciated!

Notice that $Z \sim Norm(0,1)$ because $$0 = E(Y^*) = E[(1/2)X^* + (\sqrt{3}/2)Z] = 0 + (\sqrt{3}/2)E(Z)$$ and $$1 = V(Y^*) = V[(1/2)X^* + (\sqrt{3}/2)Z] = (1/4) + (3/4)V(Z).$$
Also, $X^* > 0$ and $Z > 0\,$ imply $(1/2)X^* + (\sqrt{3}/2)Z > 0.$ which takes care of the $\ge$ in the long display ending with $1/4.$
The following simulation in R may help you understand some of the relationships and the exact value of $P(\min(X,Y) > 10).$ It is based on a million realizations of each random variable. I have used
1s instead of $*$'s. Approximations should be accurate to two or three places. The first few lines of code merely verify that the random variables have the correct moments.The scatterplot below shows 30,000 simulated $(X, Y)$ points, suggesting the density function of their joint multivariate normal distribution. The (roughly 10,000) points for which $\min(X,Y) > 10$ are plotted in orange.