In the following subsections, we will only compute probabilities involving “≤”. However, since the normal distribution is continuous, you could replace all the “≤” by a “<”, and the result would be the same.
Consider a random variable \( X \sim N(5, 3^2) \). Suppose you want to compute \( P(X \leq 4) \).
The result should be \( 0.369 \) (rounded).
Consider a random variable \( X \sim N(5, 3^2) \). Suppose you want to compute \( P(X \geq 4) \).
The result should be \( 0.631 \) (rounded).
Consider a random variable \( X \sim N(5, 3^2) \). Suppose you want to compute \( P(-2 \leq X \leq 6) \).
The result should be \( 0.621 \) (rounded).
Consider a random variable \( X \sim N(5, 3^2) \). Suppose you want to know for what \( x \) we have \( P(X \leq x) = 0.3 \).
The result should be \( x = 3.43 \) (rounded).
Consider a random variable \( X \sim N(5, 3^2) \).
f1(x)=normPdf(x,5,3)
. Press