[Math] Probability of a point from one normal distribution being higher than a point from another independent normal distribution

normal distributionprobability distributionsstatistics

Given two independent normal distributions:

Distribution 1: Mean $= 23.95$, SD $= 7.44$

Distribution 2: Mean $= 16.29$, SD $= 7.79$

How often on average will a point from Distribution 2 be greater than a point from Distribution 1?

I apologize for any nomenclature that is incorrect.


Progress

I know that the distribution of $Z=Y-X$ is normal, as well as its mean and variance.

Best Answer

Let $ X_1 \sim N(23.95,7.44), X_2 \sim N(16.29,7.79) $,

then, as mentioned by Dilip Sarwate in the comments, $ X_1 - X_2 \sim N(7.66,{\sqrt{7.44^2 + 7.79^2}}) $

Thus the problem becomes $$\mathbb{P}(X_1<X_2) = \mathbb{P}(X<0),\ \ where \ \ X = X_1 - X_2 $$

This can be calculated directly or reverting to the standard $ N(0,1) $ distribution as follows:

$$ \begin{align} \mathbb{P}( X < 0 ) = \mathbb{P}(\frac{X-7.66}{{\sqrt{7.44^2 + 7.79^2}}}<\frac{-7.66}{\sqrt{7.44^2 + 7.79^2}}) \end{align} $$

Noting that $$ \frac{X-7.66}{{\sqrt{7.44^2 + 7.79^2}}} = Z \sim N(0,1) $$

So the required probability is, approximately,

$$ \begin{align} \mathbb{P}(Z<-0.7110976012) &= \mathbb{P}( Z > 0.7110976012) \\ &= 1 -\mathbb{P}(Z<0.7110976012) \\ &\approx 1 - 0.7611\\ &= 0.2389 \end{align} $$

The numerical value found by looking up 0.71 in a standard normal table.

Related Question