A random variable X is said to be distributed as Bernoulli(theta), denoted by X ~ Bernoulli(theta), if P(X = 1) = theta and P(X = 0) = 1 - theta for 0 < theta < 1. Let Y = (1/300) * sum_{i=1}^{300} X_i, where X_1, X_2, ..., X_300 are independent and identically distributed Bernoulli(theta) random variables with theta = 0.25. The value of P(Y <= 0.3), after approximation through the Central Limit Theorem, is given by (Recall that phi(z) = (1 / sqrt(2*pi)) * integral from -inf to z of e^{-t^2/2} dt):
A. phi(2)
B. phi(1) - phi(-2)
C. phi(-2)
D. phi(0)
GATE 2025 · Engineering Mathematics · Bernoulli Distribution · medium
Answer: P(Y <= 0.3) = phi(2), which is approximately 0.9772.
Mean and variance of the Bernoulli distribution: With theta = 0.25: E[X_i] = 0.25, Var[X_i] = 0.25 * 0.75 = 0.1875.
Mean and variance of the sample mean Y by CLT: n = 300, mu = 0.25, sigma^2 = 0.1875. So E[Y] = 0.25, Var[Y] = 0.1875/300 = 0.000625, SD[Y] = sqrt(0.000625) = 0.025.
Standardise and compute the probability: P(Y <= 0.3) = phi((0.3 - 0.25) / 0.025) = phi(0.05 / 0.025) = phi(2).