.
In my solution, I systematically use the Excel function ' BINOM.DIST(k, n, p, TRUE/FALSE) '.
(i) Calculate the probability that at most 13 students will attend the stretching class.
P(<= 13 attend) = P(0) + P(1) + P(2) + . . . + P(13) = =
= cumulative sum = BINOM.DIST(13, 15, 0.95, TRUE) = 0.1710.
In this part, I confirm the answer by @Boreal.
(ii) Given that at least 12 students attend the stretching class, calculate the probability that there will be at most 1 student absent.
"Given that at least 12 students attend" means that the given part is
P(12 attend) + P(13 attend) + P(14 attend) + P(15 attend).
Next,
P(12 attend) = = BINOM.DIST(12, 15, 0.95, FALSE) = 0.030733;
P(13 attend) = = BINOM.DIST(13, 15, 0.95, FALSE) = 0.134752;
P(14 attend) = = BINOM.DIST(14, 15, 0.95, FALSE) = 0.365756;
P(15 attend) = = BINOM.DIST(15, 15, 0.95, FALSE) = 0.463291.
Now, they ask to calculate the conditional probability
P = = = = 0.833605. ANSWER
In this part, my answer is different from that of @Boreal.