I am trying to find the probability that P(X̄+0.5 < Ybar) using a bivariate normal distribution. X has a mean of 9 and variance of 3, Y has a mean of 10, and a variance of 5, and their covariance is 2, with a trial of 50 independent measurements. What I have so far is:
library("mvtnorm")
meanVector <- c(9,10)
coV <- matrix(c(3, 2, 2, 5), nrow=2)
biv <- rmvnorm(50, mean=meanVector, sigma=coV)
geneA <- mean(biv[,1])
geneB <- mean(biv[,2])
But I am not sure where to go next, or if I am even on the right track.