First your work with the normal is correct. well done.
Let X be the number of working transistors after 4 hours. X has the binomial distribution with n = 5 trials and success probability p = 0.3085
In general, if X has the binomial distribution with n trials and a success probability of p then
P[X = x] = n!/(x!(n-x)!) * p^x * (1-p)^(n-x)
for values of x = 0, 1, 2, ..., n
P[X = x] = 0 for any other value of x.
The probability mass function is derived by looking at the number of combination of x objects chosen from n objects and then a total of x success and n - x failures.
Or, in other words, the binomial is the sum of n independent and identically distributed Bernoulli trials.
X ~ Binomial( n , p )
the mean of the binomial distribution is n * p = 1.5425
the variance of the binomial distribution is n * p * (1 - p) = 1.066639
the standard deviation is the square root of the variance = √ ( n * p * (1 - p)) = 1.032782
The Probability Mass Function, PMF,
f(X) = P(X = x) is:
P( X = 0 ) = 0.1581106
P( X = 1 ) = 0.3526906
P( X = 2 ) = 0.3146929
P( X = 3 ) = 0.1403944
P( X = 4 ) = 0.03131720
P( X = 5 ) = 0.002794318
The Cumulative Distribution Function, CDF,
F(X) = P(X ≤ x) is:
x
∑ P(X = t) =
t = 0
P( X ≤ 0 ) = 0.1581106
P( X ≤ 1 ) = 0.5108012
P( X ≤ 2 ) = 0.825494
P( X ≤ 3 ) = 0.9658885
P( X ≤ 4 ) = 0.9972057
P( X ≤ 5 ) = 1
1 - F(X) is:
n
∑ P(X = t) =
t = x
P( X ≥ 0 ) = 1
P( X ≥ 1 ) = 0.8418894
P( X ≥ 2 ) = 0.4891988
P( X ≥ 3 ) = 0.1745059
P( X ≥ 4 ) = 0.03411151 = P(X = 4) + P(X = 5) ← answer
P( X ≥ 5 ) = 0.002794318